diff options
Diffstat (limited to 'src/user/lib/syscall.c')
-rw-r--r-- | src/user/lib/syscall.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/user/lib/syscall.c b/src/user/lib/syscall.c index e22f718..1635636 100644 --- a/src/user/lib/syscall.c +++ b/src/user/lib/syscall.c @@ -42,6 +42,10 @@ long _syscall_getsize(handle_t h) { return _syscall(_SYSCALL_GETSIZE, (long)h, 0, 0, 0, 0); } +long _syscall_remove(handle_t h) { + return _syscall(_SYSCALL_REMOVE, (long)h, 0, 0, 0, 0); +} + long _syscall_close(handle_t h) { return _syscall(_SYSCALL_CLOSE, (long)h, 0, 0, 0, 0); } |