From b50879588601b11beeccf7bbd941a118cbf15838 Mon Sep 17 00:00:00 2001 From: Alexander Tsidaev Date: Wed, 3 Dec 2014 16:39:40 -0500 Subject: [PATCH] vsprintf: 'static' removed from function declaration - making a file compilable with recent sdcc builds --- Library/libs/vfprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1