diff options
author | Matt Kraai <kraai@debian.org> | 2001-05-16 17:05:03 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-05-16 17:05:03 +0000 |
commit | 8f7a4ad4427614e28f2c51a4caa62c8ad9a78d8f (patch) | |
tree | 5ceefb3d6bc0f65a05c76e8c52077b0bacaa91a7 /libbb/xgethostbyname.c | |
parent | bf381a0ad83a77d054a99da2b585c43dfe71c6d1 (diff) | |
download | busybox-w32-8f7a4ad4427614e28f2c51a4caa62c8ad9a78d8f.tar.gz busybox-w32-8f7a4ad4427614e28f2c51a4caa62c8ad9a78d8f.tar.bz2 busybox-w32-8f7a4ad4427614e28f2c51a4caa62c8ad9a78d8f.zip |
Add missing include, noted by Larry Doolittle.
Diffstat (limited to 'libbb/xgethostbyname.c')
-rw-r--r-- | libbb/xgethostbyname.c | 2 |
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> |
25 | extern int h_errno; | 25 | extern int h_errno; |
26 | 26 | ||
27 | #include "libbb.h" | ||
28 | |||
27 | struct hostent *xgethostbyname(const char *name) | 29 | struct hostent *xgethostbyname(const char *name) |
28 | { | 30 | { |
29 | struct hostent *retval; | 31 | struct hostent *retval; |