diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-02-28 10:15:42 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-02-28 10:15:42 +0000 |
commit | 5c2b238b3a99442d6445faf881e1557413e044c6 (patch) | |
tree | 89ac3d4937ef80b252c15af639ceab67d6a11873 /coreutils/printf.c | |
parent | 716bbe96d47f61cf20ac9298d0911be522eefe98 (diff) | |
download | busybox-w32-5c2b238b3a99442d6445faf881e1557413e044c6.tar.gz busybox-w32-5c2b238b3a99442d6445faf881e1557413e044c6.tar.bz2 busybox-w32-5c2b238b3a99442d6445faf881e1557413e044c6.zip |
more busybox's style: close bug 745
Diffstat (limited to 'coreutils/printf.c')
-rw-r--r-- | coreutils/printf.c | 6 |
1 files changed, 3 insertions, 3 deletions
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) |