summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-31 14:47:18 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-31 14:47:18 -0500
commit24e5f210091ce984b47fd510217f10245f800f52 (patch)
tree75132dd3e5a84eccf49e267de517d88ed11e7f4a
parent6c00bc2ee83be5c166ddc02259d33435d78da0cc (diff)
add more GCC SSE hacks
-rw-r--r--src/stdio/fprintf.c1
-rw-r--r--src/stdio/vfprintf.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/fprintf.c b/src/stdio/fprintf.c
index f7a0bc9c..bab6455a 100644
--- a/src/stdio/fprintf.c
+++ b/src/stdio/fprintf.c
@@ -5,6 +5,7 @@
/** write formatted output to a file stream **/
+GCC_SSE_HACK
int fprintf(FILE * restrict stream, const char * restrict format, ...)
{
int ret = 0;
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;