diff options
author | Marvin Borner | 2021-04-10 15:25:27 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-10 15:25:27 +0200 |
commit | f96b8ad1ee83dec08ae636e179cc48019ca50b12 (patch) | |
tree | 80ff605e1305673291ce6230941db7ed4229856d /libs/libc/sys.c | |
parent | 9655593d80e23d2ea3c091e3187e8e47b278bc3d (diff) |
Some changes here and there
Diffstat (limited to 'libs/libc/sys.c')
-rw-r--r-- | libs/libc/sys.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/libc/sys.c b/libs/libc/sys.c index 139f523..70dcc97 100644 --- a/libs/libc/sys.c +++ b/libs/libc/sys.c @@ -100,11 +100,6 @@ res shaccess(u32 id, u32 *addr, u32 *size) return sys3(SYS_SHACCESS, (int)id, (int)addr, (int)size); } -void loop(void) -{ - sys0(SYS_LOOP); -} - res read(const char *path, void *buf, u32 offset, u32 count) { return sys4(SYS_READ, (int)path, (int)buf, (int)offset, (int)count); |