projects
/
akaros.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
kconfig: use pkg-config for ncurses detection
[akaros.git]
/
tools
/
compilers
/
gcc-glibc
/
glibc-2.19-akaros
/
sysdeps
/
akaros
/
getpwent.c
1
#include <sys/types.h>
2
#include <pwd.h>
3
4
struct passwd *getpwent(void)
5
{
6
return 0;
7
}
8
stub_warning(getpwent);
9
10
void setpwent(void)
11
{
12
}
13
stub_warning(setpwent);
14
15
void endpwent(void)
16
{
17
}
18
stub_warning(endpwent);