aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-16 17:05:03 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-16 17:05:03 +0000
commit607eaf213b3d2b843977b0b2775682221bd144e0 (patch)
tree5ceefb3d6bc0f65a05c76e8c52077b0bacaa91a7 /libbb
parent70fdfb7ac4390521e543da9d2de3ca0ad994c23d (diff)
downloadbusybox-w32-607eaf213b3d2b843977b0b2775682221bd144e0.tar.gz
busybox-w32-607eaf213b3d2b843977b0b2775682221bd144e0.tar.bz2
busybox-w32-607eaf213b3d2b843977b0b2775682221bd144e0.zip
Add missing include, noted by Larry Doolittle.
git-svn-id: svn://busybox.net/trunk/busybox@2656 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/xgethostbyname.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/xgethostbyname.c b/libbb/xgethostbyname.c
index c722951cf..258510332 100644
--- a/libbb/xgethostbyname.c
+++ b/libbb/xgethostbyname.c
@@ -24,6 +24,8 @@
24#include <netdb.h> 24#include <netdb.h>
25extern int h_errno; 25extern int h_errno;
26 26
27#include "libbb.h"
28
27struct hostent *xgethostbyname(const char *name) 29struct hostent *xgethostbyname(const char *name)
28{ 30{
29 struct hostent *retval; 31 struct hostent *retval;