diff options
author | Rob Landley | 2005-07-25 08:09:51 +0000 |
---|---|---|
committer | Rob Landley | 2005-07-25 08:09:51 +0000 |
commit | 5f07779acab32ed921a3979ebaf7e45067c86e2a (patch) | |
tree | 3d9f6c6b89a426c95a991f38c74c5dafe5a043a9 /busybox/include/libbb.h | |
parent | ab6399a4c6c9fe9c7661120bf65ed398eb0afd9e (diff) | |
download | busybox-5f07779acab32ed921a3979ebaf7e45067c86e2a.zip busybox-5f07779acab32ed921a3979ebaf7e45067c86e2a.tar.gz |
Shaun Jackman points out that we shouldn't depend on netdb.h to include
netinet.h for us, although what strange compiler this is expected to
cause problems with wasn't specified...
Diffstat (limited to 'busybox/include/libbb.h')
-rw-r--r-- | busybox/include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/busybox/include/libbb.h b/busybox/include/libbb.h index 467a15c..c1531ea 100644 --- a/busybox/include/libbb.h +++ b/busybox/include/libbb.h @@ -34,6 +34,7 @@ #include <stdint.h> #include <netdb.h> +#include <netinet/in.h> #ifdef DMALLOC #include <dmalloc.h> |