summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/util.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/util.h b/include/util.h
index 2be43bddfb..ba6b62761e 100644
--- a/include/util.h
+++ b/include/util.h
@@ -104,6 +104,7 @@ int isspace(int c);
int isalpha(int c);
int isupper(int c);
int isprint(int c);
+int tolower(int c);
#endif
int memcmp(const void *s1, const void *s2, size_t len);
@@ -154,8 +155,6 @@ char *strzcpy(char *dest, const char *src, int len);
* Other strings return 0 and leave *dest unchanged.
*/
int parse_bool(const char *s, int *dest);
-
-int tolower(int c);
#endif /* !HIDE_EC_STDLIB */
/**