summaryrefslogtreecommitdiff
path: root/src/unistd
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-12 11:02:56 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-12 11:02:56 -0400
commitecd4d00f1bdf184163cc44ed8261d9f11ca9aae0 (patch)
tree7148339b74cfd5f453be629843e4647b8ed3e7a2 /src/unistd
parentc37709cb45a4dac2c9c8ffb0fdae2361e2ead7de (diff)
remove all generated nonstd/ headers
Diffstat (limited to 'src/unistd')
-rw-r--r--src/unistd/confstr.c2
-rw-r--r--src/unistd/getcwd.c2
-rw-r--r--src/unistd/getgroups.c2
-rw-r--r--src/unistd/pipe.c2
-rw-r--r--src/unistd/unlink.c2
-rw-r--r--src/unistd/write.c2
6 files changed, 6 insertions, 6 deletions
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 <unistd.h>
#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 <unistd.h>
-#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 <unistd.h>
#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 <unistd.h>
-#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 <unistd.h>
-#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 <unistd.h>
-#include "nonstd/assert.h"
+#include "../_assert.h"
#include "../_syscall.h"
ssize_t write(int fildes, const void *buf, size_t nbyte)