summaryrefslogtreecommitdiff
path: root/src/stdio/__printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/__printf.c')
-rw-r--r--src/stdio/__printf.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/stdio/__printf.c b/src/stdio/__printf.c
index 0d950583..391f7cbc 100644
--- a/src/stdio/__printf.c
+++ b/src/stdio/__printf.c
@@ -1,15 +1,18 @@
+#if 0
//#include <sys/types.h>
+//#include <unistd.h>
+#endif
+
#include <stdio.h>
#include <stddef.h>
#include "wctype/wint_t.h"
#include "wctype/wctrans_t.h"
#include <wchar.h>
#include <inttypes.h>
-//#include <unistd.h>
#include <stdlib.h>
#include "_stdio.h"
-#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199909L
+#if (!defined __STDC_VERSION__) || (__STDC_VERSION__ < 199909L)
#include "stdint/intmax_t.h"
#include "stdint/uintmax_t.h"
#include "stdint/intptr_t.h"