9a21d1a2fd
-The macros take care of prepending the leading underscore when necessary.
10 lines
137 B
ArmAsm
10 lines
137 B
ArmAsm
#include <machine/asm.h>
|
|
|
|
IMPORT(_setuid)
|
|
ENTRY(setuid)
|
|
jmp _C_LABEL(_setuid)
|
|
|
|
IMPORT(_seteuid)
|
|
ENTRY(seteuid)
|
|
jmp _C_LABEL(_seteuid)
|
|
|