vsprintf: 'static' removed from function declaration - making a file compilable with...
authorAlexander Tsidaev <a.tsidaev@gmail.com>
Wed, 3 Dec 2014 21:39:40 +0000 (16:39 -0500)
committerAlexander Tsidaev <a.tsidaev@gmail.com>
Wed, 3 Dec 2014 21:39:40 +0000 (16:39 -0500)
Library/libs/vfprintf.c

index 15175aa..4eebc70 100644 (file)
@@ -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;