aboutsummaryrefslogtreecommitdiff
path: root/coreutils/cut.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/cut.c')
-rw-r--r--coreutils/cut.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c
index 526a99393..11e9d5e87 100644
--- a/coreutils/cut.c
+++ b/coreutils/cut.c
@@ -45,9 +45,11 @@ struct cut_list {
45 int endpos; 45 int endpos;
46}; 46};
47 47
48static const int BOL = 0; 48enum {
49static const int EOL = INT_MAX; 49 BOL = 0,
50static const int NON_RANGE = -1; 50 EOL = INT_MAX,
51 NON_RANGE = -1
52};
51 53
52static struct cut_list *cut_lists = NULL; /* growable array holding a series of lists */ 54static struct cut_list *cut_lists = NULL; /* growable array holding a series of lists */
53static unsigned int nlists = 0; /* number of elements in above list */ 55static unsigned int nlists = 0; /* number of elements in above list */