Slowly pulling more common headers into libbb.h. Andre pointed out that
authorRob Landley <rob@landley.net>
Sat, 24 Jun 2006 17:55:02 +0000 (17:55 -0000)
committerRob Landley <rob@landley.net>
Sat, 24 Jun 2006 17:55:02 +0000 (17:55 -0000)
older uClibc didn't include sys/socket.h from netinet/in.h, so add an
explicit #include for that too...

include/libbb.h

index 998bcc6f3adbc406541a188f8ae100c16bc27b75..db43984b89a55107bd7cfec76c678b74b6d0b930 100644 (file)
 #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>