diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-09-25 21:45:58 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-09-25 21:45:58 +0000 |
commit | 3570a34de46b1f7dedd16999bb1687e2d6b55d40 (patch) | |
tree | 7fa09f8a448d71c604288ec50a1777e657f57db5 /networking | |
parent | caffb6eff0e33a80da630963f21346c21186da39 (diff) | |
download | busybox-3570a34de46b1f7dedd16999bb1687e2d6b55d40.tar.gz |
Renamed "internal.h" to the more sensible "busybox.h".
-Erik
Diffstat (limited to 'networking')
-rw-r--r-- | networking/hostname.c | 4 | ||||
-rw-r--r-- | networking/nc.c | 2 | ||||
-rw-r--r-- | networking/nslookup.c | 4 | ||||
-rw-r--r-- | networking/ping.c | 4 | ||||
-rw-r--r-- | networking/telnet.c | 2 | ||||
-rw-r--r-- | networking/wget.c | 2 |
6 files changed, 9 insertions, 9 deletions
diff --git a/networking/hostname.c b/networking/hostname.c index 77b545ded..4320a968c 100644 --- a/networking/hostname.c +++ b/networking/hostname.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * $Id: hostname.c,v 1.12 2000/07/16 20:57:15 kraai Exp $ + * $Id: hostname.c,v 1.13 2000/09/25 21:45:57 andersen Exp $ * Mini hostname implementation for busybox * * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> @@ -23,7 +23,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "internal.h" +#include "busybox.h" #include <errno.h> #include <arpa/inet.h> #include <netdb.h> diff --git a/networking/nc.c b/networking/nc.c index a544f32fc..fcacb0c45 100644 --- a/networking/nc.c +++ b/networking/nc.c @@ -25,7 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "internal.h" +#include "busybox.h" #include <stdio.h> #include <stdlib.h> #include <unistd.h> diff --git a/networking/nslookup.c b/networking/nslookup.c index 10d36b2d1..acb3e3bb2 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c @@ -21,7 +21,7 @@ * */ -#include "internal.h" +#include "busybox.h" #include <ctype.h> #include <errno.h> #include <stdio.h> @@ -170,4 +170,4 @@ int nslookup_main(int argc, char **argv) return( TRUE); } -/* $Id: nslookup.c,v 1.11 2000/07/16 20:57:15 kraai Exp $ */ +/* $Id: nslookup.c,v 1.12 2000/09/25 21:45:58 andersen Exp $ */ diff --git a/networking/ping.c b/networking/ping.c index f3ce6fb80..70ea0f196 100644 --- a/networking/ping.c +++ b/networking/ping.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * $Id: ping.c,v 1.24 2000/09/20 04:33:30 kraai Exp $ + * $Id: ping.c,v 1.25 2000/09/25 21:45:58 andersen Exp $ * Mini ping implementation for busybox * * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> @@ -31,7 +31,7 @@ * Original copyright notice is retained at the end of this file. */ -#include "internal.h" +#include "busybox.h" #include <sys/param.h> #include <sys/socket.h> #include <sys/file.h> diff --git a/networking/telnet.c b/networking/telnet.c index cf55de6af..bfa964460 100644 --- a/networking/telnet.c +++ b/networking/telnet.c @@ -31,7 +31,7 @@ */ -#include "internal.h" +#include "busybox.h" #include <termios.h> #include <unistd.h> #include <errno.h> diff --git a/networking/wget.c b/networking/wget.c index c06e76d90..58801ee47 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -7,7 +7,7 @@ * <chip@laserlink.net> */ -#include "internal.h" +#include "busybox.h" #include <stdio.h> #include <stdlib.h> #include <unistd.h> |