diff options
author | Rob Landley <rob@landley.net> | 2006-06-24 17:55:02 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-06-24 17:55:02 +0000 |
commit | 5d9c42aadc7a526faa58bc94b9bdb650595f9d24 (patch) | |
tree | 1415e52de9085a6becf95b202e01883b0d0cc76a | |
parent | 53433b3ca1fb5593167b6fd66f879d45f8f31ecc (diff) | |
download | busybox-5d9c42aadc7a526faa58bc94b9bdb650595f9d24.tar.gz |
Slowly pulling more common headers into libbb.h. Andre pointed out that
older uClibc didn't include sys/socket.h from netinet/in.h, so add an
explicit #include for that too...
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 998bcc6f3..db43984b8 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -14,12 +14,17 @@ #include "bb_config.h" #include "platform.h" +#include <ctype.h> #include <dirent.h> +#include <fcntl.h> #include <inttypes.h> #include <netdb.h> #include <stdio.h> #include <stdlib.h> #include <stdarg.h> +#include <string.h> +#include <strings.h> +#include <sys/socket.h> #include <sys/stat.h> #include <sys/time.h> #include <sys/types.h> |