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 | |
parent | bf381a0ad83a77d054a99da2b585c43dfe71c6d1 (diff) | |
download | busybox-8f7a4ad4427614e28f2c51a4caa62c8ad9a78d8f.tar.gz |
Add missing include, noted by Larry Doolittle.
Diffstat (limited to 'libbb')
-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 @@ #include <netdb.h> extern int h_errno; +#include "libbb.h" + struct hostent *xgethostbyname(const char *name) { struct hostent *retval; |