aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/sys.h
diff options
context:
space:
mode:
authorMarvin Borner2021-02-10 20:28:16 +0100
committerMarvin Borner2021-02-10 20:28:16 +0100
commite7fb1f97a5f95bcfd1d924b345f98bc0b496f5c0 (patch)
tree70984e3433c5de919d2be59c0ad633156213e30b /libc/inc/sys.h
parentedc570a3552a7fdaaf89962e5374d98c2b3dfaa0 (diff)
Print to streams instead of serial console
Diffstat (limited to 'libc/inc/sys.h')
-rw-r--r--libc/inc/sys.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h
index 231a0e2..d7e5e3d 100644
--- a/libc/inc/sys.h
+++ b/libc/inc/sys.h
@@ -28,8 +28,6 @@ enum sys {
SYS_NET_RECEIVE, // Receive data from socket
};
-enum event_type { EVENT_KEYBOARD, EVENT_MOUSE, EVENT_MAX };
-
struct message {
int src;
int type;
@@ -70,7 +68,7 @@ int sys5(enum sys num, int d1, int d2, int d3, int d4, int d5);
int sysv(enum sys num, ...);
/**
- * Wrappers
+ * Syscall wrappers
*/
#define loop() sys0(SYS_LOOP)