diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/extern.h | 3 | ||||
-rw-r--r-- | include/services.h | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/extern.h b/include/extern.h index 4305595f7..66cd043ce 100644 --- a/include/extern.h +++ b/include/extern.h @@ -654,7 +654,8 @@ E int m_version(char *source, int ac, char **av); /**** misc.c ****/ - +E int toupper(char); +E int tolower(char); E char *strscpy(char *d, const char *s, size_t len); E char *stristr(char *s1, char *s2); E char *strnrepl(char *s, int32 size, const char *old, const char *new); diff --git a/include/services.h b/include/services.h index ef0671aec..9eaab1f47 100644 --- a/include/services.h +++ b/include/services.h @@ -154,7 +154,6 @@ extern int shutdown(int, int); #undef toupper #define tolower tolower_ #define toupper toupper_ -extern int toupper(char), tolower(char); /* We also have our own encrypt(). */ #define encrypt encrypt_ |