diff options
author | Jakob Kaivo <jkk@ung.org> | 2024-05-30 14:04:25 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2024-05-30 14:04:25 -0400 |
commit | 33e1a42b8edb49d407b4812e982eed5065db09e0 (patch) | |
tree | da422e17bb499591bb72da39a1a955e22090a315 /src | |
parent | 9c9a3d6ffeaeb41f9521c0ba4d6d85b846911e32 (diff) |
add GCC SSE hack
Diffstat (limited to 'src')
-rw-r--r-- | src/stdio/snprintf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stdio/snprintf.c b/src/stdio/snprintf.c index 4ee9ec7f..c77239c4 100644 --- a/src/stdio/snprintf.c +++ b/src/stdio/snprintf.c @@ -3,6 +3,7 @@ #include <string.h> #include "_stdio.h" +GCC_SSE_HACK int snprintf(char * restrict s, size_t n, const char * restrict format, ...) { SIGNAL_SAFE(0); |