summaryrefslogtreecommitdiff
path: root/src/stdio/__printf.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 20:00:37 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 20:00:37 -0400
commit73da506ee04ec490c5959b45c216a1f8508bec5b (patch)
treef356a994826be58341695dca611c3f324b511413 /src/stdio/__printf.c
parentd82a95f6e907652151f658d140fcd47a26b70976 (diff)
consistently use <> for standardized headers
Diffstat (limited to 'src/stdio/__printf.c')
-rw-r--r--src/stdio/__printf.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/stdio/__printf.c b/src/stdio/__printf.c
index 7da38752..ad266e2c 100644
--- a/src/stdio/__printf.c
+++ b/src/stdio/__printf.c
@@ -1,12 +1,13 @@
-#include "stdio.h"
-#include "_stdio.h"
-#include "stddef.h"
+#include <sys/types.h>
+#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 <wchar.h>
+#include <inttypes.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include "_stdio.h"
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199909L
#include "stdint/intmax_t.h"