diff options
author | dzwdz | 2021-08-24 16:49:23 +0200 |
---|---|---|
committer | dzwdz | 2021-08-24 16:49:23 +0200 |
commit | 8625003ed7f688a62988f03cc6987574b9d591d2 (patch) | |
tree | 999769ef7e8d8a2eefc3b5cdced4fc2c32f4f46b /src/init | |
parent | 9958bdacfa51b5d8eee386b863cdcc2d76f44f4a (diff) |
remove _syscall_debug_log, as it's not needed anymore
Diffstat (limited to 'src/init')
-rw-r--r-- | src/init/syscalls.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/init/syscalls.c b/src/init/syscalls.c index 4f207db..9422e79 100644 --- a/src/init/syscalls.c +++ b/src/init/syscalls.c @@ -35,7 +35,3 @@ int _syscall_fd_write(fd_t fd, char *buf, int len) { int _syscall_fd_close(fd_t fd) { return _syscall(_SYSCALL_FD_CLOSE, fd, 0, 0); } - -int _syscall_debuglog(const char *msg, size_t len) { - return _syscall(_SYSCALL_DEBUGLOG, (int)msg, len, 0); -} |