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...
This commit is contained in:
Rob Landley 2006-06-24 17:55:02 +00:00
parent 53433b3ca1
commit 5d9c42aadc

View File

@ -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>