fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / linux / personality.c
1 #include <sys/personality.h>
2 #include "syscall.h"
3 #ifdef SYS_personality
4 int personality(unsigned long persona)
5 {
6         return syscall(SYS_personality, persona);
7 }
8 #endif