Sign in
akaros
/
upstream
/
0131abaccf13143ebcb907d083ecfbe118f9ba49
/
.
/
tools
/
compilers
/
gcc-glibc
/
glibc-2.19-akaros
/
sysdeps
/
akaros
/
getpwnam_r.c
blob: b0b4e80cdae7153697b773127d31e68f291b162d [
file
] [
log
] [
blame
]
#include
<sys/types.h>
#include
<pwd.h>
int
__getpwnam_r
(
const
char
*
name
,
struct
passwd
*
pwd
,
char
*
buf
,
size_t
buflen
,
struct
passwd
**
result
)
{
return
0
;
}
weak_alias
(
__getpwnam_r
,
getpwnam_r
);
stub_warning
(
getpwnam_r
);