From: Alexander Tsidaev Date: Wed, 3 Dec 2014 21:39:40 +0000 (-0500) Subject: vsprintf: 'static' removed from function declaration - making a file compilable with... X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=b50879588601b11beeccf7bbd941a118cbf15838;p=FUZIX.git vsprintf: 'static' removed from function declaration - making a file compilable with recent sdcc builds --- diff --git a/Library/libs/vfprintf.c b/Library/libs/vfprintf.c index 15175aa5..4eebc70d 100644 --- a/Library/libs/vfprintf.c +++ b/Library/libs/vfprintf.c @@ -66,7 +66,7 @@ static int prtfld(FILE * op, unsigned char *buf, int ljustf, char sign, return (cnt); } -static int vfprintf(FILE * op, char *fmt, va_list ap) +int vfprintf(FILE * op, char *fmt, va_list ap) { register int i, ljustf, lval, preci, dpoint, width, radix, cnt = 0; char pad, sign, hash;