diff options
author | Jakob Kaivo <jkk@ung.org> | 2024-01-31 14:47:18 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2024-01-31 14:47:18 -0500 |
commit | 24e5f210091ce984b47fd510217f10245f800f52 (patch) | |
tree | 75132dd3e5a84eccf49e267de517d88ed11e7f4a /src/stdio/vfprintf.c | |
parent | 6c00bc2ee83be5c166ddc02259d33435d78da0cc (diff) |
add more GCC SSE hacks
Diffstat (limited to 'src/stdio/vfprintf.c')
-rw-r--r-- | src/stdio/vfprintf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stdio/vfprintf.c b/src/stdio/vfprintf.c index 91de900d..958e04fe 100644 --- a/src/stdio/vfprintf.c +++ b/src/stdio/vfprintf.c @@ -5,6 +5,7 @@ /** write formatted output to a file stream **/ +GCC_SSE_HACK int vfprintf(FILE * restrict stream, const char * restrict format, va_list arg) { int ret = 0; |