fix trailing whitespace issues that crept in here and there
[musl] / src / misc / personality.c
1 #include "syscall.h"
2 #ifdef SYS_personality
3 int personality(unsigned long persona)
4 {
5         return syscall(SYS_personality, persona);
6 }
7 #endif