diff options
author | vodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-28 10:15:42 +0000 |
---|---|---|
committer | vodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-28 10:15:42 +0000 |
commit | 6977b6a9731dbd4c6a9f26385a981cecbf0b4ab8 (patch) | |
tree | 89ac3d4937ef80b252c15af639ceab67d6a11873 | |
parent | 9357cdbf8a9302daa64997f33407fc57b5f14f53 (diff) | |
download | busybox-w32-6977b6a9731dbd4c6a9f26385a981cecbf0b4ab8.tar.gz busybox-w32-6977b6a9731dbd4c6a9f26385a981cecbf0b4ab8.tar.bz2 busybox-w32-6977b6a9731dbd4c6a9f26385a981cecbf0b4ab8.zip |
more busybox's style: close bug 745
git-svn-id: svn://busybox.net/trunk/busybox@14362 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | coreutils/cal.c | 6 | ||||
-rw-r--r-- | coreutils/printf.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/coreutils/cal.c b/coreutils/cal.c index d9456ed9e..a134380c3 100644 --- a/coreutils/cal.c +++ b/coreutils/cal.c | |||
@@ -88,9 +88,9 @@ static int is_leap_year(int year) | |||
88 | #define leap_years_since_year_1(yr) \ | 88 | #define leap_years_since_year_1(yr) \ |
89 | ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr)) | 89 | ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr)) |
90 | 90 | ||
91 | static void center __P((char *, int, int)); | 91 | static void center (char *, int, int); |
92 | static void day_array __P((int, int, int *)); | 92 | static void day_array (int, int, int *); |
93 | static void trim_trailing_spaces_and_print __P((char *)); | 93 | static void trim_trailing_spaces_and_print (char *); |
94 | 94 | ||
95 | static void blank_string(char *buf, size_t buflen); | 95 | static void blank_string(char *buf, size_t buflen); |
96 | static char *build_row(char *p, int *dp); | 96 | static char *build_row(char *p, int *dp); |
diff --git a/coreutils/printf.c b/coreutils/printf.c index 1fe68afcb..706fd9c45 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c | |||
@@ -49,9 +49,9 @@ | |||
49 | #include <assert.h> | 49 | #include <assert.h> |
50 | #include "busybox.h" | 50 | #include "busybox.h" |
51 | 51 | ||
52 | static int print_formatted __P((char *format, int argc, char **argv)); | 52 | static int print_formatted (char *format, int argc, char **argv); |
53 | static void print_direc __P( (char *start, size_t length, | 53 | static void print_direc (char *start, size_t length, |
54 | int field_width, int precision, char *argument)); | 54 | int field_width, int precision, char *argument); |
55 | 55 | ||
56 | typedef int (*converter)(char *arg, void *result); | 56 | typedef int (*converter)(char *arg, void *result); |
57 | void multiconvert(char *arg, void *result, converter convert) | 57 | void multiconvert(char *arg, void *result, converter convert) |