]> git.ipfire.org Git - thirdparty/glibc.git/blame - nss/tst-nss-static.c
2012-04-06 Paul Pluzhnikov <ppluzhnikov@google.com>
[thirdparty/glibc.git] / nss / tst-nss-static.c
CommitLineData
62470f60
PP
1/* 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"