Fix dos2unix/tr problem noted by Larry Doolittle.
diff --git a/dos2unix.c b/dos2unix.c
index 8308c41..4ca6658 100644
--- a/dos2unix.c
+++ b/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;