From ecd4d00f1bdf184163cc44ed8261d9f11ca9aae0 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 12 Aug 2020 11:02:56 -0400 Subject: remove all generated nonstd/ headers --- src/unistd/confstr.c | 2 +- src/unistd/getcwd.c | 2 +- src/unistd/getgroups.c | 2 +- src/unistd/pipe.c | 2 +- src/unistd/unlink.c | 2 +- src/unistd/write.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/unistd') diff --git a/src/unistd/confstr.c b/src/unistd/confstr.c index 0cf00319..c6fd1523 100644 --- a/src/unistd/confstr.c +++ b/src/unistd/confstr.c @@ -2,7 +2,7 @@ #include #include "errno.h" #include "string.h" -#include "nonstd/assert.h" +#include "../_assert.h" size_t confstr(int name, char *buf, size_t len) { diff --git a/src/unistd/getcwd.c b/src/unistd/getcwd.c index 7a37a7c2..61f9c573 100644 --- a/src/unistd/getcwd.c +++ b/src/unistd/getcwd.c @@ -1,6 +1,6 @@ #include "sys/types.h" #include -#include "nonstd/assert.h" +#include "../_assert.h" #include "../_syscall.h" char * getcwd(char *buf, size_t size) diff --git a/src/unistd/getgroups.c b/src/unistd/getgroups.c index b7df2896..5e7b3ff5 100644 --- a/src/unistd/getgroups.c +++ b/src/unistd/getgroups.c @@ -3,7 +3,7 @@ #include #include "errno.h" #include "../_syscall.h" -#include "nonstd/assert.h" +#include "../_assert.h" int getgroups(int gidsetsize, gid_t grouplist[]) { diff --git a/src/unistd/pipe.c b/src/unistd/pipe.c index 26e97dea..394b1846 100644 --- a/src/unistd/pipe.c +++ b/src/unistd/pipe.c @@ -1,7 +1,7 @@ #include "stddef.h" #include "sys/types.h" #include -#include "nonstd/assert.h" +#include "../_assert.h" #include "../_syscall.h" int pipe(int fildes[2]) diff --git a/src/unistd/unlink.c b/src/unistd/unlink.c index f658872d..0ce396bf 100644 --- a/src/unistd/unlink.c +++ b/src/unistd/unlink.c @@ -1,7 +1,7 @@ #include "stddef.h" #include "sys/types.h" #include -#include "nonstd/assert.h" +#include "../_assert.h" #include "../_syscall.h" int unlink(const char *path) diff --git a/src/unistd/write.c b/src/unistd/write.c index 6982a359..a58bdc78 100644 --- a/src/unistd/write.c +++ b/src/unistd/write.c @@ -1,7 +1,7 @@ #include "stddef.h" #include "sys/types.h" #include -#include "nonstd/assert.h" +#include "../_assert.h" #include "../_syscall.h" ssize_t write(int fildes, const void *buf, size_t nbyte) -- cgit v1.2.1