summaryrefslogtreecommitdiff
path: root/userspace
diff options
context:
space:
mode:
Diffstat (limited to 'userspace')
-rw-r--r--userspace/sys/syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/userspace/sys/syscalls.c b/userspace/sys/syscalls.c
index 314492f..25c48b0 100644
--- a/userspace/sys/syscalls.c
+++ b/userspace/sys/syscalls.c
@@ -116,7 +116,7 @@ int stat(const char *file, struct stat *st)
return syscall(SYSCALL_STAT,file,st,0);
}
-int ltat(const char *file, struct stat *st)
+int lstat(const char *file, struct stat *st)
{
return syscall(SYSCALL_LSTAT,file,st,0);
}