diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-09 01:06:07 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-09 01:06:07 -0400 |
commit | ee2e8661148b7e9fe1413a714fdf8779f867afc0 (patch) | |
tree | 82a6be2b540b6f3bcf462da6fa36d616304f4127 /sys/include | |
parent | da2bcd5b6a651ad6aa81a94d51b8e3cc61652569 (diff) |
kernel: proc: Add initial setuid()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/ucred.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/sys/ucred.h b/sys/include/sys/ucred.h index 32eb9b3..ef66a18 100644 --- a/sys/include/sys/ucred.h +++ b/sys/include/sys/ucred.h @@ -46,4 +46,5 @@ struct ucred { #endif /* _KERNEL */ }; +int setuid(uid_t new); #endif /* !_SYS_UCRED_H_ */ |