diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-27 12:32:53 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-27 12:32:53 +0100 |
commit | 1d2529b4a13a18900d36f9d3b914b1bca68d962f (patch) | |
tree | d3be7621ba3c925321aabe609d6622f41887cfe8 /Kernel/Syscall.h | |
parent | 711e2b2651505da91cef983df130118bc6b709d8 (diff) | |
download | serenity-1d2529b4a13a18900d36f9d3b914b1bca68d962f.zip |
Add chown() syscall and a simple /bin/chown program.
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 5a05b82c6e..661d7b5158 100644 --- a/Kernel/Syscall.h +++ b/Kernel/Syscall.h @@ -82,6 +82,7 @@ __ENUMERATE_SYSCALL(get_shared_buffer) \ __ENUMERATE_SYSCALL(release_shared_buffer) \ __ENUMERATE_SYSCALL(link) \ + __ENUMERATE_SYSCALL(chown) \ namespace Syscall { |