blob: 020f02dd3040d88367f5ad1317fca4296018ce00 (
plain)
1
2
3
4
5
6
7
|
#include <errno.h>
#include <sys/syscall.h>
#include <sys/sysmips.h>
#ifdef __NR_sysmips
_syscall4(int, sysmips, const int, cmd, const long, arg1, const int, arg2, const int, arg3);
#endif
|