summaryrefslogtreecommitdiff
path: root/src/stdio/fputc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/fputc.c')
-rw-r--r--src/stdio/fputc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/fputc.c b/src/stdio/fputc.c
index c392a19c..063d13a7 100644
--- a/src/stdio/fputc.c
+++ b/src/stdio/fputc.c
@@ -5,7 +5,7 @@
#include "sys/types.h"
#include "unistd.h"
#else
-#include "nonstd/syscall.h"
+#include "../_syscall.h"
#define write(_fd, _buf, _size) __syscall(__lookup("write"), _fd, _buf, _size)
#endif