From 73da506ee04ec490c5959b45c216a1f8508bec5b Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sun, 16 Aug 2020 20:00:37 -0400 Subject: consistently use <> for standardized headers --- src/fcntl/creat.c | 2 +- src/fcntl/fcntl.c | 6 +++--- src/fcntl/open.c | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/fcntl') 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 #include 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 #include -#include "errno.h" -#include "stdarg.h" +#include +#include #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 #include -#include "sys/stat.h" /* OH */ -#include "errno.h" -#include "stdarg.h" +#include /* OH */ +#include +#include #include "_syscall.h" int open(const char *path, int oflag, ...) -- cgit v1.2.1