diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-24 13:19:36 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-24 13:19:36 +0200 |
commit | 5f36a5f22e8bf0e9de9a8059722352d2f8cf9b5f (patch) | |
tree | dcb425849c408c6d2adf9f195ee34d23acd8901d /Kernel/Syscall.h | |
parent | bca4b71bfa1e3db74aaa706a9849e36768282a95 (diff) | |
download | serenity-5f36a5f22e8bf0e9de9a8059722352d2f8cf9b5f.zip |
Add an lstat() syscall and use it to make "ls" nicer.
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r-- | Kernel/Syscall.h | 1 |
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(); |