diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 20:00:37 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 20:00:37 -0400 |
commit | 73da506ee04ec490c5959b45c216a1f8508bec5b (patch) | |
tree | f356a994826be58341695dca611c3f324b511413 /src/fcntl | |
parent | d82a95f6e907652151f658d140fcd47a26b70976 (diff) |
consistently use <> for standardized headers
Diffstat (limited to 'src/fcntl')
-rw-r--r-- | src/fcntl/creat.c | 2 | ||||
-rw-r--r-- | src/fcntl/fcntl.c | 6 | ||||
-rw-r--r-- | src/fcntl/open.c | 8 |
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, ...) |