summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;