blob: 1384782b47dc5bbd77690dd89990fa3bb935904b (
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
|