aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/sys.c
diff options
context:
space:
mode:
authorMarvin Borner2021-04-10 15:25:27 +0200
committerMarvin Borner2021-04-10 15:25:27 +0200
commitf96b8ad1ee83dec08ae636e179cc48019ca50b12 (patch)
tree80ff605e1305673291ce6230941db7ed4229856d /libs/libc/sys.c
parent9655593d80e23d2ea3c091e3187e8e47b278bc3d (diff)
Some changes here and there
Diffstat (limited to 'libs/libc/sys.c')
-rw-r--r--libs/libc/sys.c5
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);