summaryrefslogtreecommitdiff
path: root/src/stdio/popen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/popen.c')
-rw-r--r--src/stdio/popen.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/stdio/popen.c b/src/stdio/popen.c
index 0e3ee7dd..dd338519 100644
--- a/src/stdio/popen.c
+++ b/src/stdio/popen.c
@@ -1,15 +1,15 @@
#include <stdio.h>
-#include "string.h"
-#include "errno.h"
+#include <string.h>
+#include <errno.h>
-#include "sys/types.h"
-#include "unistd.h"
+#include <sys/types.h>
+#include <unistd.h"
#include "_assert.h"
#include "_stdio.h"
#ifdef __STDC_VERSION__
-#include "wchar.h"
+#include <wchar.h>
#endif
FILE * popen(const char * command, const char * mode)