diff options
author | Manuel Novoa III | 2002-05-29 19:08:41 +0000 |
---|---|---|
committer | Manuel Novoa III | 2002-05-29 19:08:41 +0000 |
commit | b99cb64b805a2dfd4e0fabfedf17eb6b0234d39f (patch) | |
tree | 83fbaea15a57be78258ba76d6c4e1ed85f5c2ca2 /coreutils | |
parent | a94a06a38eba7665f20c8e67cf2c424cab9ee43c (diff) | |
download | busybox-b99cb64b805a2dfd4e0fabfedf17eb6b0234d39f.zip busybox-b99cb64b805a2dfd4e0fabfedf17eb6b0234d39f.tar.gz |
Include busybox.h before testing CONFIG_LOCALE_SUPPORT.
Diffstat (limited to 'coreutils')
-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 66f96ab..f6578bf 100644 --- a/coreutils/cal.c +++ b/coreutils/cal.c @@ -31,12 +31,12 @@ #include <time.h> #include <unistd.h> +#include "busybox.h" + #ifdef CONFIG_LOCALE_SUPPORT #include <locale.h> #endif -#include "busybox.h" - #define THURSDAY 4 /* for reformation */ #define SATURDAY 6 /* 1 Jan 1 was a Saturday */ |