scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit ac419b4e9017c49736a13de9689992652c133b16
parent 6ed5716792875bb18530a739fb407ba688b01347
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon,  7 Nov 2022 10:37:10 +0100

libc/stdio: Whitespace changes

Diffstat:
Msrc/libc/stdio/vfprintf.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/libc/stdio/vfprintf.c b/src/libc/stdio/vfprintf.c @@ -118,7 +118,7 @@ savecnt(va_list *va, int flags, size_t cnt) } static size_t -wstrout(wchar_t *ws, size_t len, int width, int fill, FILE * restrict fp) +wstrout(wchar_t *ws, size_t len, int width, int fill, FILE *restrict fp) { int left = 0, adjust; size_t cnt = 0; @@ -198,7 +198,7 @@ strout(char *s, size_t len, int width, int fill, FILE *restrict fp) } int -vfprintf(FILE * restrict fp, const char * restrict fmt, va_list va) +vfprintf(FILE *restrict fp, const char *restrict fmt, va_list va) { int ch, n, flags, width, left, fill; size_t inc, len, cnt = 0;