Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-09-26 01:45:58 +0400
committerEric Andersen <andersen@codepoet.org>2000-09-26 01:45:58 +0400
commit3570a34de46b1f7dedd16999bb1687e2d6b55d40 (patch)
tree7fa09f8a448d71c604288ec50a1777e657f57db5 /findutils
parentcaffb6eff0e33a80da630963f21346c21186da39 (diff)
Renamed "internal.h" to the more sensible "busybox.h".
-Erik
Diffstat (limited to 'findutils')
-rw-r--r--findutils/find.c2
-rw-r--r--findutils/grep.c2
-rw-r--r--findutils/which.c2
-rw-r--r--findutils/xargs.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/findutils/find.c b/findutils/find.c
index 1c209aea1..48faf2c30 100644
--- a/findutils/find.c
+++ b/findutils/find.c
@@ -22,7 +22,7 @@
*
*/
-#include "internal.h"
+#include "busybox.h"
#include <stdio.h>
#include <unistd.h>
#include <dirent.h>
diff --git a/findutils/grep.c b/findutils/grep.c
index 3ee409c64..003dae98e 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -26,7 +26,7 @@
#include <regex.h>
#include <string.h> /* for strerror() */
#include <errno.h>
-#include "internal.h"
+#include "busybox.h"
extern int optind; /* in unistd.h */
extern int errno; /* for use with strerror() */
diff --git a/findutils/which.c b/findutils/which.c
index 7df2557a3..da8801fab 100644
--- a/findutils/which.c
+++ b/findutils/which.c
@@ -21,7 +21,7 @@
*
*/
-#include "internal.h"
+#include "busybox.h"
#include <stdio.h>
extern int which_main(int argc, char **argv)
diff --git a/findutils/xargs.c b/findutils/xargs.c
index b8ac31aa0..4a3fe3c60 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -21,7 +21,7 @@
*
*/
-#include "internal.h"
+#include "busybox.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>