]> git.ipfire.org Git - thirdparty/glibc.git/blame - nss/tst-nss-static.c
[powerpc] No need to enter "Ignore Exceptions Mode"
[thirdparty/glibc.git] / nss / tst-nss-static.c
CommitLineData
62470f60
PP
1/* glibc test for static NSS. */
2#include <stdio.h>
3
a3fe6a20
DD
4#include <support/support.h>
5
62470f60
PP
6static int
7do_test (void)
8{
9 struct passwd *pw;
10
11 pw = getpwuid(0);
12 return pw == NULL;
13}
14
15
a3fe6a20 16#include <support/test-driver.c>