You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
410 B
23 lines
410 B
#include "tests.h" |
|
#include <asm/unistd.h> |
|
|
|
#ifdef __NR_setfsgid |
|
|
|
# define SYSCALL_NR __NR_setfsgid |
|
# define SYSCALL_NAME "setfsgid" |
|
|
|
# if defined __NR_setfsgid32 && __NR_setfsgid != __NR_setfsgid32 |
|
# define UGID_TYPE short |
|
# define GETUGID syscall(__NR_getegid) |
|
# else |
|
# define UGID_TYPE int |
|
# define GETUGID getegid() |
|
# endif |
|
|
|
# include "setfsugid.c" |
|
|
|
#else |
|
|
|
SKIP_MAIN_UNDEFINED("__NR_setfsgid") |
|
|
|
#endif
|
|
|