diff options
author | markw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-01-05 18:19:30 +0000 |
---|---|---|
committer | markw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-01-05 18:19:30 +0000 |
commit | a8bb97e6346b29fae6bf7af25639b08b161be832 (patch) | |
tree | e0756a3c6d2222e9c99a49fbd36727b91753b709 | |
parent | 5bb2388a9285e7f44274241095fe9a8b4f181201 (diff) | |
download | busybox-w32-a8bb97e6346b29fae6bf7af25639b08b161be832.tar.gz busybox-w32-a8bb97e6346b29fae6bf7af25639b08b161be832.tar.bz2 busybox-w32-a8bb97e6346b29fae6bf7af25639b08b161be832.zip |
Turned some #define constants into static const ints.
git-svn-id: svn://busybox.net/trunk/busybox@1540 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | coreutils/tail.c | 4 | ||||
-rw-r--r-- | tail.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c index 8e6488931..dc5918d6b 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c | |||
@@ -39,8 +39,8 @@ static struct suffix_mult null_suffixes[] = { | |||
39 | }; | 39 | }; |
40 | #endif | 40 | #endif |
41 | 41 | ||
42 | #define BYTES 0 | 42 | static const int BYTES = 0; |
43 | #define LINES 1 | 43 | static const int LINES = 1; |
44 | 44 | ||
45 | static char *tailbuf; | 45 | static char *tailbuf; |
46 | static int taillen; | 46 | static int taillen; |
@@ -39,8 +39,8 @@ static struct suffix_mult null_suffixes[] = { | |||
39 | }; | 39 | }; |
40 | #endif | 40 | #endif |
41 | 41 | ||
42 | #define BYTES 0 | 42 | static const int BYTES = 0; |
43 | #define LINES 1 | 43 | static const int LINES = 1; |
44 | 44 | ||
45 | static char *tailbuf; | 45 | static char *tailbuf; |
46 | static int taillen; | 46 | static int taillen; |