diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/util.h | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 81c7f9cf0..464e339c7 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2002-06-21 Stefan Bellon <[email protected]> + + * util.h [__riscos__]: Further moving away of RISC OS specific + stuff from general code. + 2002-06-20 Stefan Bellon <[email protected]> * util.h [__riscos__]: Added riscos_set_filetype(). diff --git a/include/util.h b/include/util.h index bfc77af91..1d0e4edd5 100644 --- a/include/util.h +++ b/include/util.h @@ -260,6 +260,12 @@ int vasprintf ( char **result, const char *format, va_list args); #ifdef __riscos__ /* needed for strcasecmp() */ #include <strings.h> +/* needed for filename munging */ +#include <unixlib/local.h> +/* needed for image file system feature */ +#include <unixlib/features.h> +void riscos_global_defaults(); +#define RISCOS_GLOBAL_STATICS(a) const char *__dynamic_da_name = (a); void riscos_set_filetype(const char *filename, const char *mimetype); pid_t riscos_getpid(void); int riscos_kill(pid_t pid, int sig); |