aboutsummaryrefslogtreecommitdiff
path: root/coreutils/dos2unix.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-04-12 21:38:06 +0000
committerMatt Kraai <kraai@debian.org>2001-04-12 21:38:06 +0000
commit1e04ea388f5f673f44503052d0f8873e4017abc3 (patch)
treebc9146b79f0892a753a1185698b00eccb10e92c2 /coreutils/dos2unix.c
parentd6cde0bcf43903c9f691ee7e745891f713419a9b (diff)
downloadbusybox-1e04ea388f5f673f44503052d0f8873e4017abc3.tar.gz
Fix dos2unix/tr problem noted by Larry Doolittle.
Diffstat (limited to 'coreutils/dos2unix.c')
-rw-r--r--coreutils/dos2unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c
index 8308c4179..4ca665841 100644
--- a/coreutils/dos2unix.c
+++ b/coreutils/dos2unix.c
@@ -32,7 +32,7 @@
#include "busybox.h"
// if fn is NULL then input is stdin and output is stdout
-extern int convert(char *fn, int ConvType) {
+static int convert(char *fn, int ConvType) {
char c;
char *tempFn = NULL;
FILE *in = stdin, *out = stdout;