summaryrefslogtreecommitdiff
path: root/src/unistd/read.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/read.c')
-rw-r--r--src/unistd/read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/read.c b/src/unistd/read.c
index c44e406d..f7b91a9b 100644
--- a/src/unistd/read.c
+++ b/src/unistd/read.c
@@ -2,11 +2,11 @@
#include "sys/types.h"
#include <unistd.h>
#include "errno.h"
-#include "nonstd/syscall.h"
+#include "../_syscall.h"
ssize_t read(int fildes, void *buf, size_t nbyte)
{
- SYSCALL("read", ssize_t, -1, fildes, buf, nbyte, 0, 0, 0);
+ SYSCALL(read, ssize_t, -1, fildes, buf, nbyte, 0, 0, 0);
}
/*
POSIX(1)