diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2004-06-28 06:05:36 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2004-06-28 06:05:36 +0000 |
| commit | 3b90bf797f06d87c7eca9be5d0a09ed9c232a1ec (patch) | |
| tree | ff12c87e0f37b93c11a4dee785ddf27063d900c5 /usr.bin/cut | |
| parent | dc7949f45f24f6702bed8abfb295db185cf7904a (diff) | |
Notes
Diffstat (limited to 'usr.bin/cut')
| -rw-r--r-- | usr.bin/cut/cut.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/cut/cut.c b/usr.bin/cut/cut.c index a10d7c317a38..2e334f6e2506 100644 --- a/usr.bin/cut/cut.c +++ b/usr.bin/cut/cut.c @@ -63,6 +63,9 @@ int fflag; int nflag; int sflag; +size_t autostart, autostop, maxval; +char * positions; + int b_cut(FILE *, const char *); int b_n_cut(FILE *, const char *); int c_cut(FILE *, const char *); @@ -154,10 +157,6 @@ main(int argc, char *argv[]) exit(rval); } -size_t autostart, autostop, maxval; - -char *positions; - void get_list(char *list) { |
