diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-09-12 19:52:42 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-09-12 19:52:42 +0000 |
commit | f9e069084cb5bb4b251bc75ad91b1ff1b165d2cc (patch) | |
tree | 1428eb76a25d0973a3f463b2d51dcd9733105399 /lib/libc/locale | |
parent | 3e75d8f4fd2ce44a911bb6bb23fe8df8dc610d89 (diff) | |
download | FreeBSD-src-f9e069084cb5bb4b251bc75ad91b1ff1b165d2cc.zip FreeBSD-src-f9e069084cb5bb4b251bc75ad91b1ff1b165d2cc.tar.gz |
Include a couple of headers to ensure consistency between the prototype and
the function definition.
Diffstat (limited to 'lib/libc/locale')
-rw-r--r-- | lib/libc/locale/runetype.c | 1 | ||||
-rw-r--r-- | lib/libc/locale/tolower.c | 1 | ||||
-rw-r--r-- | lib/libc/locale/toupper.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/lib/libc/locale/runetype.c b/lib/libc/locale/runetype.c index 71e9c86..99f7aa2 100644 --- a/lib/libc/locale/runetype.c +++ b/lib/libc/locale/runetype.c @@ -37,6 +37,7 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <ctype.h> #include <stdio.h> #include <runetype.h> diff --git a/lib/libc/locale/tolower.c b/lib/libc/locale/tolower.c index faace3e..ff5163e 100644 --- a/lib/libc/locale/tolower.c +++ b/lib/libc/locale/tolower.c @@ -37,6 +37,7 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <ctype.h> #include <stdio.h> #include <runetype.h> diff --git a/lib/libc/locale/toupper.c b/lib/libc/locale/toupper.c index aca1ca1..1b35d32 100644 --- a/lib/libc/locale/toupper.c +++ b/lib/libc/locale/toupper.c @@ -37,6 +37,7 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <ctype.h> #include <stdio.h> #include <runetype.h> |