diff options
author | Marvin Borner | 2020-08-15 17:42:36 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-15 17:42:36 +0200 |
commit | 9f16b032d38613ca95e321e1d1e652c43129c68b (patch) | |
tree | 33f71a84f60b496ed31a128ec542c5341c754b0d /lib/inc/sys.h | |
parent | 32b8722128dfb4ca9e814940a23c2b22a283bb12 (diff) |
Added libgui
Diffstat (limited to 'lib/inc/sys.h')
-rw-r--r-- | lib/inc/sys.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/inc/sys.h b/lib/inc/sys.h deleted file mode 100644 index 16d3c4f..0000000 --- a/lib/inc/sys.h +++ /dev/null @@ -1,27 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner -// Syscall implementation - -#ifndef SYS_H -#define SYS_H - -enum sys { SYS_LOOP, SYS_MALLOC, SYS_FREE, SYS_EXEC, SYS_EXIT }; - -int sys0(enum sys num); -int sys1(enum sys num, int d1); -int sys2(enum sys num, int d1, int d2); -int sys3(enum sys num, int d1, int d2, int d3); -int sys4(enum sys num, int d1, int d2, int d3, int d4); -int sys5(enum sys num, int d1, int d2, int d3, int d4, int d5); - -/** - * Wrappers - */ - -#define loop() sys0(SYS_LOOP) -#define exec(path) sys1(SYS_EXEC, (int)path) -#define exit() \ - sys0(SYS_EXIT); \ - while (1) { \ - } - -#endif |