Home | History | Annotate | Download | only in tests
      1 #include "tests.h"
      2 #include <asm/unistd.h>
      3 
      4 #ifdef __NR_setuid32
      5 
      6 # define SYSCALL_NR	__NR_setuid32
      7 # define SYSCALL_NAME	"setuid32"
      8 # define UGID_TYPE	int
      9 # define GETUGID	geteuid()
     10 # define CHECK_OVERFLOWUGID(arg)
     11 # include "setugid.c"
     12 
     13 #else
     14 
     15 SKIP_MAIN_UNDEFINED("__NR_setuid32")
     16 
     17 #endif
     18