diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-24 17:55:02 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-24 17:55:02 +0000 |
commit | 2eec02166cba005bf2f07238b9273e7c0adeeb20 (patch) | |
tree | 1415e52de9085a6becf95b202e01883b0d0cc76a /include/libbb.h | |
parent | 8109a3894ec43a7ea137f0584f718548c7c6d8fb (diff) | |
download | busybox-w32-2eec02166cba005bf2f07238b9273e7c0adeeb20.tar.gz busybox-w32-2eec02166cba005bf2f07238b9273e7c0adeeb20.tar.bz2 busybox-w32-2eec02166cba005bf2f07238b9273e7c0adeeb20.zip |
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...
git-svn-id: svn://busybox.net/trunk/busybox@15500 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-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 @@ | |||
14 | #include "bb_config.h" | 14 | #include "bb_config.h" |
15 | #include "platform.h" | 15 | #include "platform.h" |
16 | 16 | ||
17 | #include <ctype.h> | ||
17 | #include <dirent.h> | 18 | #include <dirent.h> |
19 | #include <fcntl.h> | ||
18 | #include <inttypes.h> | 20 | #include <inttypes.h> |
19 | #include <netdb.h> | 21 | #include <netdb.h> |
20 | #include <stdio.h> | 22 | #include <stdio.h> |
21 | #include <stdlib.h> | 23 | #include <stdlib.h> |
22 | #include <stdarg.h> | 24 | #include <stdarg.h> |
25 | #include <string.h> | ||
26 | #include <strings.h> | ||
27 | #include <sys/socket.h> | ||
23 | #include <sys/stat.h> | 28 | #include <sys/stat.h> |
24 | #include <sys/time.h> | 29 | #include <sys/time.h> |
25 | #include <sys/types.h> | 30 | #include <sys/types.h> |