summaryrefslogtreecommitdiff
path: root/src/linux/arch_prctl.c
blob: 94603658ab7d5a8b5ad136b301c796760e8865e7 (plain) (blame)
1
2
3
4
5
6
7
#include "syscall.h"
#ifdef SYS_arch_prctl
int arch_prctl(int code, unsigned long addr)
{
	return syscall(SYS_arch_prctl, code, addr);
}
#endif