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 /rdate.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 'rdate.c')
-rw-r--r-- | rdate.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ | |||
33 | #include <getopt.h> | 33 | #include <getopt.h> |
34 | 34 | ||
35 | 35 | ||
36 | #define RFC_868_BIAS 2208988800UL | 36 | static const int RFC_868_BIAS = 2208988800UL; |
37 | 37 | ||
38 | int setdate= 0; | 38 | int setdate= 0; |
39 | int printdate= 0; | 39 | int printdate= 0; |