Turned some #define constants into static const ints.

This commit is contained in:
Mark Whitley 2001-01-05 18:19:30 +00:00
parent 55bccf315e
commit eb60d8bcd1
2 changed files with 4 additions and 4 deletions

View File

@ -39,8 +39,8 @@ static struct suffix_mult null_suffixes[] = {
};
#endif
#define BYTES 0
#define LINES 1
static const int BYTES = 0;
static const int LINES = 1;
static char *tailbuf;
static int taillen;

4
tail.c
View File

@ -39,8 +39,8 @@ static struct suffix_mult null_suffixes[] = {
};
#endif
#define BYTES 0
#define LINES 1
static const int BYTES = 0;
static const int LINES = 1;
static char *tailbuf;
static int taillen;