#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;
#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;
#define CT_AUTO 0
#define CT_UNIX2DOS 1
#define CT_DOS2UNIX 2
-extern int convert(char *fn, int ConvType);
+/* extern int convert(char *fn, int ConvType); */
#endif /* __LIBBB_H__ */
#define CT_AUTO 0
#define CT_UNIX2DOS 1
#define CT_DOS2UNIX 2
-extern int convert(char *fn, int ConvType);
+/* extern int convert(char *fn, int ConvType); */
#endif /* __LIBBB_H__ */