mirror of
https://github.com/ish-app/ish.git
synced 2025-12-08 17:36:02 +00:00
7 lines
227 B
C
7 lines
227 B
C
#include "kernel/calls.h"
|
|
|
|
int_t sys_ipc(uint_t call, int_t first, int_t second, int_t third, addr_t ptr, int_t fifth) {
|
|
STRACE("ipc(%u, %d, %d, %d, %#x, %d)", call, first, second, third, ptr, fifth);
|
|
return _ENOSYS;
|
|
}
|