summaryrefslogtreecommitdiff
path: root/Kernel/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-24 13:19:36 +0200
committerAndreas Kling <awesomekling@gmail.com>2018-10-24 13:19:36 +0200
commit5f36a5f22e8bf0e9de9a8059722352d2f8cf9b5f (patch)
treedcb425849c408c6d2adf9f195ee34d23acd8901d /Kernel/Syscall.h
parentbca4b71bfa1e3db74aaa706a9849e36768282a95 (diff)
downloadserenity-5f36a5f22e8bf0e9de9a8059722352d2f8cf9b5f.zip
Add an lstat() syscall and use it to make "ls" nicer.
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r--Kernel/Syscall.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h
index 70b3f12983..ff0b8af69e 100644
--- a/Kernel/Syscall.h
+++ b/Kernel/Syscall.h
@@ -27,6 +27,7 @@ enum Function {
PosixMmap = 0x1995,
PosixMunmap = 0x1996,
GetDirEntries = 0x1997,
+ PosixLstat = 0x1998,
};
void initialize();