blob: f22814f41f00b5e6bbb566076997c2b717857cd6 [file] [log] [blame]
/**
* Returns prefix for a syscall constant literal. It is has to be that way
* thanks to ARM that decided to prefix their special system calls like sys32
* and sys26 with __ARM_NR_* prefix instead of __NR_*, so we can't simply print
* "__NR_".
*/
static inline const char *
nr_prefix(kernel_ulong_t scno)
{
return "__NR_";
}