ish/kernel/prctl.c
2018-11-25 13:45:08 -08:00

6 lines
135 B
C

#include "kernel/calls.h"
int_t sys_prctl(dword_t option, uint_t arg2, uint_t arg3, uint_t arg4, uint_t arg5) {
return _EINVAL;
}