From 787c3b0fd09ea8456d2391e59e7589f0cf8f5555 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 11 Aug 2020 20:41:05 -0400 Subject: move auto-generated nonstd/syscall.h to static private _syscall.h --- src/fcntl/fcntl.c | 2 +- src/fcntl/open.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/fcntl') diff --git a/src/fcntl/fcntl.c b/src/fcntl/fcntl.c index b02745e9..d2abcf48 100644 --- a/src/fcntl/fcntl.c +++ b/src/fcntl/fcntl.c @@ -2,7 +2,7 @@ #include #include "errno.h" #include "stdarg.h" -#include "nonstd/syscall.h" +#include "../_syscall.h" int fcntl(int fildes, int cmd, ...) { diff --git a/src/fcntl/open.c b/src/fcntl/open.c index 07bf7f6d..04102a64 100644 --- a/src/fcntl/open.c +++ b/src/fcntl/open.c @@ -3,7 +3,7 @@ #include "sys/stat.h" /* OH */ #include "errno.h" #include "stdarg.h" -#include "nonstd/syscall.h" +#include "../_syscall.h" int open(const char *path, int oflag, ...) { -- cgit v1.2.1