diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/util.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index b53345359..e401a6550 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2002-06-07 Stefan Bellon <[email protected]> + + * util.h [__riscos__]: RISC OS needs strings.h for strcasecmp() + and strncasecmp(). + 2002-05-22 Werner Koch <[email protected]> * util.h: Add strncasecmp. Removed stricmp and memicmp. diff --git a/include/util.h b/include/util.h index b49b6c9c6..1cb76c911 100644 --- a/include/util.h +++ b/include/util.h @@ -257,6 +257,8 @@ int vasprintf ( char **result, const char *format, va_list args); /******* RISC OS stuff ***********/ #ifdef __riscos__ +/* needed for strcasecmp() */ +#include <strings.h> pid_t riscos_getpid(void); int riscos_kill(pid_t pid, int sig); int riscos_access(const char *path, int amode); |