diff options
Diffstat (limited to 'have/setresuid.c')
-rw-r--r-- | have/setresuid.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/have/setresuid.c b/have/setresuid.c new file mode 100644 index 0000000..0f3f65c --- /dev/null +++ b/have/setresuid.c @@ -0,0 +1,8 @@ +#include <sys/types.h> +#include <unistd.h> + +int +main(void) +{ + return setresuid(-1, -1, -1) == -1; +} |