diff options
author | Mark Whitley <markw@lineo.com> | 2001-01-23 22:30:04 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-01-23 22:30:04 +0000 |
commit | 59ab025363d884deb2013dcaae6c968585a6ec72 (patch) | |
tree | 852d97bdc34c44dbcf29cc8b5cd9257a8c90f7b3 /coreutils/uname.c | |
parent | 2b8d07c590249991fae975652aae86f5fca91f81 (diff) | |
download | busybox-w32-59ab025363d884deb2013dcaae6c968585a6ec72.tar.gz busybox-w32-59ab025363d884deb2013dcaae6c968585a6ec72.tar.bz2 busybox-w32-59ab025363d884deb2013dcaae6c968585a6ec72.zip |
#define -> static const int. Also got rid of some big static buffers.
Diffstat (limited to 'coreutils/uname.c')
-rw-r--r-- | coreutils/uname.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/coreutils/uname.c b/coreutils/uname.c index e7e9ff331..4f7c643f9 100644 --- a/coreutils/uname.c +++ b/coreutils/uname.c | |||
@@ -44,22 +44,22 @@ static void print_element(unsigned int mask, char *element); | |||
44 | 44 | ||
45 | /* Values that are bitwise or'd into `toprint'. */ | 45 | /* Values that are bitwise or'd into `toprint'. */ |
46 | /* Operating system name. */ | 46 | /* Operating system name. */ |
47 | #define PRINT_SYSNAME 1 | 47 | static const int PRINT_SYSNAME = 1; |
48 | 48 | ||
49 | /* Node name on a communications network. */ | 49 | /* Node name on a communications network. */ |
50 | #define PRINT_NODENAME 2 | 50 | static const int PRINT_NODENAME = 2; |
51 | 51 | ||
52 | /* Operating system release. */ | 52 | /* Operating system release. */ |
53 | #define PRINT_RELEASE 4 | 53 | static const int PRINT_RELEASE = 4; |
54 | 54 | ||
55 | /* Operating system version. */ | 55 | /* Operating system version. */ |
56 | #define PRINT_VERSION 8 | 56 | static const int PRINT_VERSION = 8; |
57 | 57 | ||
58 | /* Machine hardware name. */ | 58 | /* Machine hardware name. */ |
59 | #define PRINT_MACHINE 16 | 59 | static const int PRINT_MACHINE = 16; |
60 | 60 | ||
61 | /* Host processor type. */ | 61 | /* Host processor type. */ |
62 | #define PRINT_PROCESSOR 32 | 62 | static const int PRINT_PROCESSOR = 32; |
63 | 63 | ||
64 | /* Mask indicating which elements of the name to print. */ | 64 | /* Mask indicating which elements of the name to print. */ |
65 | static unsigned char toprint; | 65 | static unsigned char toprint; |