blob: c6f68ae072bf6180d2c40e36c53bfee3464d5b87 [file] [log] [blame]
#include "tests.h"
#include <sys/syscall.h>
#ifdef __NR_getuid32
# include <stdio.h>
# include <unistd.h>
int
main(void)
{
printf("getuid32() = %ld\n", syscall(__NR_getuid32));
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_getuid32")
#endif