From 0df5a8fa0361e06a46240689d01665c1c59ef7c4 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 31 Jan 2024 00:04:19 -0500 Subject: remove last vestiges of _assert.h (now _safety.h) --- 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 99320b6b..681715cd 100644 --- a/src/unistd/confstr.c +++ b/src/unistd/confstr.c @@ -4,7 +4,7 @@ #include #include #include -#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 #include -#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 #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 #include -#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 #include -#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 #include -#include "_assert.h" +#include "_safety.h" #include "_syscall.h" ssize_t write(int fildes, const void *buf, size_t nbyte) -- cgit v1.2.1