more busybox's style: close bug 745

This commit is contained in:
"Vladimir N. Oleynik"
2006-02-28 10:15:42 +00:00
parent 716bbe96d4
commit 5c2b238b3a
2 changed files with 6 additions and 6 deletions

View File

@ -49,9 +49,9 @@
#include <assert.h>
#include "busybox.h"
static int print_formatted __P((char *format, int argc, char **argv));
static void print_direc __P( (char *start, size_t length,
int field_width, int precision, char *argument));
static int print_formatted (char *format, int argc, char **argv);
static void print_direc (char *start, size_t length,
int field_width, int precision, char *argument);
typedef int (*converter)(char *arg, void *result);
void multiconvert(char *arg, void *result, converter convert)