diff options
Diffstat (limited to 'catsprintf.c')
-rw-r--r-- | catsprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catsprintf.c b/catsprintf.c index e0914c4..7d000cd 100644 --- a/catsprintf.c +++ b/catsprintf.c @@ -1,6 +1,6 @@ #include "catsprintf.h" -int catsprintf(char *buf, const char *format, ...) { +int catsprintf(char *buf, int major, const char *format, ...) { static int i = 0; va_list arg; /*will point to each unnamed argument in turn*/ |