diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2002-05-29 19:08:41 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2002-05-29 19:08:41 +0000 |
commit | b99cb64b805a2dfd4e0fabfedf17eb6b0234d39f (patch) | |
tree | 83fbaea15a57be78258ba76d6c4e1ed85f5c2ca2 | |
parent | a94a06a38eba7665f20c8e67cf2c424cab9ee43c (diff) | |
download | busybox-w32-b99cb64b805a2dfd4e0fabfedf17eb6b0234d39f.tar.gz busybox-w32-b99cb64b805a2dfd4e0fabfedf17eb6b0234d39f.tar.bz2 busybox-w32-b99cb64b805a2dfd4e0fabfedf17eb6b0234d39f.zip |
Include busybox.h before testing CONFIG_LOCALE_SUPPORT.
-rw-r--r-- | coreutils/cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/cal.c b/coreutils/cal.c index 66f96abd2..f6578bf43 100644 --- a/coreutils/cal.c +++ b/coreutils/cal.c | |||
@@ -31,12 +31,12 @@ | |||
31 | #include <time.h> | 31 | #include <time.h> |
32 | #include <unistd.h> | 32 | #include <unistd.h> |
33 | 33 | ||
34 | #include "busybox.h" | ||
35 | |||
34 | #ifdef CONFIG_LOCALE_SUPPORT | 36 | #ifdef CONFIG_LOCALE_SUPPORT |
35 | #include <locale.h> | 37 | #include <locale.h> |
36 | #endif | 38 | #endif |
37 | 39 | ||
38 | #include "busybox.h" | ||
39 | |||
40 | #define THURSDAY 4 /* for reformation */ | 40 | #define THURSDAY 4 /* for reformation */ |
41 | #define SATURDAY 6 /* 1 Jan 1 was a Saturday */ | 41 | #define SATURDAY 6 /* 1 Jan 1 was a Saturday */ |
42 | 42 | ||