summaryrefslogtreecommitdiff
path: root/src/unistd
diff options
context:
space:
mode:
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 99320b6b..681715cd 100644
--- a/src/unistd/confstr.c
+++ b/src/unistd/confstr.c
@@ -4,7 +4,7 @@
#include <unistd.h>
#include <errno.h>
#include <string.h>
-#include "_assert.h"
+#include "_safety.h"
size_t confstr(int name, char *buf, size_t len)
{
diff --git a/src/unistd/getcwd.c b/src/unistd/getcwd.c
index f3fb8757..aa237a43 100644
--- a/src/unistd/getcwd.c
+++ b/src/unistd/getcwd.c
@@ -2,7 +2,7 @@
#include <sys/types.h>
#include <unistd.h>
-#include "_assert.h"
+#include "_safety.h"
#include "_syscall.h"
char * getcwd(char *buf, size_t size)
diff --git a/src/unistd/getgroups.c b/src/unistd/getgroups.c
index 30ae81b6..f783622d 100644
--- a/src/unistd/getgroups.c
+++ b/src/unistd/getgroups.c
@@ -2,7 +2,7 @@
#include <sys/types.h>
#include "_syscall.h"
-#include "_assert.h"
+#include "_safety.h"
int getgroups(int gidsetsize, gid_t grouplist[])
{
diff --git a/src/unistd/pipe.c b/src/unistd/pipe.c
index 8c8c5295..3018f04d 100644
--- a/src/unistd/pipe.c
+++ b/src/unistd/pipe.c
@@ -2,7 +2,7 @@
#include <sys/types.h>
#include <unistd.h>
-#include "_assert.h"
+#include "_safety.h"
#include "_syscall.h"
int pipe(int fildes[2])
diff --git a/src/unistd/unlink.c b/src/unistd/unlink.c
index 64f234bb..6ac77543 100644
--- a/src/unistd/unlink.c
+++ b/src/unistd/unlink.c
@@ -2,7 +2,7 @@
#include <sys/types.h>
#include <unistd.h>
-#include "_assert.h"
+#include "_safety.h"
#include "_syscall.h"
int unlink(const char *path)
diff --git a/src/unistd/write.c b/src/unistd/write.c
index 27a17aca..21eef9ef 100644
--- a/src/unistd/write.c
+++ b/src/unistd/write.c
@@ -2,7 +2,7 @@
#include <sys/types.h>
#include <unistd.h>
-#include "_assert.h"
+#include "_safety.h"
#include "_syscall.h"
ssize_t write(int fildes, const void *buf, size_t nbyte)