diff options
Diffstat (limited to 'libs/libc/inc/sys.h')
-rw-r--r-- | libs/libc/inc/sys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libc/inc/sys.h b/libs/libc/inc/sys.h index b555998..6565e10 100644 --- a/libs/libc/inc/sys.h +++ b/libs/libc/inc/sys.h @@ -72,7 +72,7 @@ res write(const char *path, const void *buf, u32 offset, u32 count) NONNULL; res ioctl(const char *path, ...) NONNULL; res stat(const char *path, struct stat *buf) NONNULL; res poll(const char **files) NONNULL; -res exec(const char *path, ...) ATTR((nonnull(1))); +res exec(const char *path, ...) ATTR((nonnull(1))) SENTINEL; res yield(void); res boot(u32 cmd); u32 time(void); |