diff options
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 58d7969..a9ebf2e 100644 --- a/libs/libc/inc/sys.h +++ b/libs/libc/inc/sys.h @@ -15,7 +15,6 @@ #define SYS_BOOT_SHUTDOWN 0xdead enum sys { - SYS_LOOP, // To infinity and beyond (debug)! SYS_ALLOC, // Allocate memory SYS_SHACCESS, // Access shared memory SYS_FREE, // Free memory @@ -64,7 +63,6 @@ struct stat { * Syscall wrappers */ -void loop(void); void exit(s32 status) NORETURN; res read(const char *path, void *buf, u32 offset, u32 count) NONNULL; res write(const char *path, const void *buf, u32 offset, u32 count) NONNULL; |