musl - an implementation of the standard library for Linux-based systems
blob: 06851f58b355fc064ff264a9a1310bd16bba03c8 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include "syscall.h"
#ifdef SYS_personality
int personality(unsigned long persona)
{
return syscall(SYS_personality, persona);
}
#endif
|