use bb_xbind/bb_xlisten
[oweals/busybox.git] / coreutils / cut.c
index 839bab68ebb331cd2b22be897f6d7413c007eb2c..11e9d5e873bc4aa155699799a8ebda29986dce25 100644 (file)
@@ -45,9 +45,11 @@ struct cut_list {
        int endpos;
 };
 
-static const int BOL = 0;
-static const int EOL = INT_MAX;
-static const int NON_RANGE = -1;
+enum {
+       BOL = 0,
+       EOL = INT_MAX,
+       NON_RANGE = -1
+};
 
 static struct cut_list *cut_lists = NULL; /* growable array holding a series of lists */
 static unsigned int nlists = 0; /* number of elements in above list */
@@ -289,7 +291,7 @@ static void cut_file(FILE *file)
 }
 
 
-extern int cut_main(int argc, char **argv)
+int cut_main(int argc, char **argv)
 {
        unsigned long opt;
        char *sopt, *sdopt;