]> git.ipfire.org Git - thirdparty/glibc.git/blob - nss/tst-nss-static.c
Fix MIPS n64 readahead (bug 21026).
[thirdparty/glibc.git] / nss / tst-nss-static.c
1 /* glibc test for static NSS. */
2 #include <stdio.h>
3
4 #define TEST_FUNCTION do_test ()
5 static int
6 do_test (void)
7 {
8 struct passwd *pw;
9
10 pw = getpwuid(0);
11 return pw == NULL;
12 }
13
14
15 #include "../test-skeleton.c"