diff options
Diffstat (limited to 'src/unistd/getcwd.c')
-rw-r--r-- | src/unistd/getcwd.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/unistd/getcwd.c b/src/unistd/getcwd.c deleted file mode 100644 index aa237a43..00000000 --- a/src/unistd/getcwd.c +++ /dev/null @@ -1,18 +0,0 @@ -#if 0 - -#include <sys/types.h> -#include <unistd.h> -#include "_safety.h" -#include "_syscall.h" - -char * getcwd(char *buf, size_t size) -{ - ASSERT_NONNULL(buf); - SYSCALL(getcwd, char *, NULL, buf, size, 0, 0, 0, 0); -} -/* -POSIX(1) -*/ - - -#endif |