repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Silence -O3 -Wall warning in malloc/hooks.c with GCC 7 [BZ #22052]
[glibc.git]
/
nss
/
tst-nss-static.c
blob
6c3dc07622d355bb991830b09dd8f19794dfdc37
1
/* glibc test for static NSS. */
2
#include <stdio.h>
3
4
#include <support/support.h>
5
6
static int
7
do_test
(
void
)
8
{
9
struct
passwd
*
pw
;
10
11
pw
=
getpwuid
(
0
);
12
return
pw
==
NULL
;
13
}
14
15
16
#include <support/test-driver.c>