summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-06-24 17:55:02 +0000
committerRob Landley <rob@landley.net>2006-06-24 17:55:02 +0000
commit5d9c42aadc7a526faa58bc94b9bdb650595f9d24 (patch)
tree1415e52de9085a6becf95b202e01883b0d0cc76a /include
parent53433b3ca1fb5593167b6fd66f879d45f8f31ecc (diff)
downloadbusybox-w32-5d9c42aadc7a526faa58bc94b9bdb650595f9d24.tar.gz
busybox-w32-5d9c42aadc7a526faa58bc94b9bdb650595f9d24.tar.bz2
busybox-w32-5d9c42aadc7a526faa58bc94b9bdb650595f9d24.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...
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h5
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>