diff options
author | deischen <deischen@FreeBSD.org> | 2001-04-10 03:55:19 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2001-04-10 03:55:19 +0000 |
commit | 9afc57514e4beba89a3e84ca17a0f1875a536dd5 (patch) | |
tree | 4699591f9afa925a9c5152dbec680702303f1505 /lib | |
parent | 28d5436d8ae3ee455124da7a43be21f61fba957c (diff) | |
download | FreeBSD-src-9afc57514e4beba89a3e84ca17a0f1875a536dd5.zip FreeBSD-src-9afc57514e4beba89a3e84ca17a0f1875a536dd5.tar.gz |
Include <unistd.h> so that read(2) and write(2) don't cause warnings.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/locale/ldpart.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/locale/ldpart.c b/lib/libc/locale/ldpart.c index 1ebbd17..a55a8b7 100644 --- a/lib/libc/locale/ldpart.c +++ b/lib/libc/locale/ldpart.c @@ -31,9 +31,10 @@ #include <sys/stat.h> #include <sys/syslimits.h> #include <fcntl.h> -#include "un-namespace.h" #include <stdlib.h> #include <string.h> +#include <unistd.h> +#include "un-namespace.h" #include "setlocale.h" #include "ldpart.h" |