blob: 98cf073deb3744121ba322a472da169b43881bf1 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/* glibc test for static NSS. */
2#include <stdio.h>
3
4#define TEST_FUNCTION do_test ()
5static int
6do_test (void)
7{
8 struct passwd *pw;
9
10 pw = getpwuid(0);
11 return pw == NULL;
12}
13
14
15#include "../test-skeleton.c"