summaryrefslogtreecommitdiff
path: root/userland/libc/include
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/include')
-rw-r--r--userland/libc/include/unistd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/include/unistd.h b/userland/libc/include/unistd.h
index e43dc33..7d74097 100644
--- a/userland/libc/include/unistd.h
+++ b/userland/libc/include/unistd.h
@@ -10,7 +10,7 @@ extern int opterr, optind, optopt;
extern char *optarg;
int close(int fildes);
-int ftruncate(int fildes, uint64_t length);
+int ftruncate(int fildes, size_t length);
int execv(char *path, char **argv);
int pipe(int fd[2]);
int dup2(int org_fd, int new_fd);