summaryrefslogtreecommitdiff
path: root/src/fcntl
diff options
context:
space:
mode:
Diffstat (limited to 'src/fcntl')
-rw-r--r--src/fcntl/creat.c2
-rw-r--r--src/fcntl/fcntl.c6
-rw-r--r--src/fcntl/open.c8
3 files changed, 8 insertions, 8 deletions
diff --git a/src/fcntl/creat.c b/src/fcntl/creat.c
index eab98ca8..3161da79 100644
--- a/src/fcntl/creat.c
+++ b/src/fcntl/creat.c
@@ -1,4 +1,4 @@
-#include "sys/types.h"
+#include <sys/types.h>
#include <fcntl.h>
int creat(const char *path, mode_t mode)
diff --git a/src/fcntl/fcntl.c b/src/fcntl/fcntl.c
index 6f888bf1..3e2715b4 100644
--- a/src/fcntl/fcntl.c
+++ b/src/fcntl/fcntl.c
@@ -1,7 +1,7 @@
-#include "sys/types.h"
+#include <sys/types.h>
#include <fcntl.h>
-#include "errno.h"
-#include "stdarg.h"
+#include <errno.h>
+#include <stdarg.h>
#include "_syscall.h"
int fcntl(int fildes, int cmd, ...)
diff --git a/src/fcntl/open.c b/src/fcntl/open.c
index 14c12e1b..bc1ae2c1 100644
--- a/src/fcntl/open.c
+++ b/src/fcntl/open.c
@@ -1,8 +1,8 @@
-#include "sys/types.h"
+#include <sys/types.h>
#include <fcntl.h>
-#include "sys/stat.h" /* OH */
-#include "errno.h"
-#include "stdarg.h"
+#include <sys/stat.h> /* OH */
+#include <errno.h>
+#include <stdarg.h>
#include "_syscall.h"
int open(const char *path, int oflag, ...)