diff options
author | Marvin Borner | 2021-04-05 00:22:15 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-05 00:22:15 +0200 |
commit | b476dc856431436ac0f3e0179f8a25302421a0cc (patch) | |
tree | ac89ab7533db5ebae796ec0f732271afff10c891 /libs/libc/inc/sys.h | |
parent | 248c0d2fd007eeeb108ff1a88924e3ef8ff84ba4 (diff) |
Added new randomization features
Diffstat (limited to 'libs/libc/inc/sys.h')
-rw-r--r-- | libs/libc/inc/sys.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/libc/inc/sys.h b/libs/libc/inc/sys.h index b435899..58d7969 100644 --- a/libs/libc/inc/sys.h +++ b/libs/libc/inc/sys.h @@ -28,7 +28,6 @@ enum sys { SYS_EXIT, // Exit current process SYS_BOOT, // Boot functions (e.g. reboot/shutdown) SYS_YIELD, // Switch to next process - SYS_TIME, // Get kernel time /* SYS_NET_OPEN, // Open network socket */ /* SYS_NET_CLOSE, // Close network socket */ /* SYS_NET_CONNECT, // Connect to destination */ @@ -75,7 +74,6 @@ res poll(const char **files) NONNULL; res exec(const char *path, ...) ATTR((nonnull(1))) SENTINEL; res yield(void); res boot(u32 cmd); -u32 time(void); res sys_alloc(u32 size, u32 *addr) NONNULL; res sys_free(void *ptr) NONNULL; |