ubuntu-buildroot/output/build/glibc-2.36-81-g4f4d7a13edfd.../nss/tst-nss-static.c

17 lines
212 B
C

/* glibc test for static NSS. */
#include <stdio.h>
#include <support/support.h>
static int
do_test (void)
{
struct passwd *pw;
pw = getpwuid(0);
return pw == NULL;
}
#include <support/test-driver.c>