2 Copyright © 2004-2016, The AROS Development Team. All rights reserved.
6 #include <aros/debug.h>
11 /*****************************************************************************
17 struct passwd
*getpwuid(
29 Function is not re-entrant. Results will be overwritten by
40 ******************************************************************************/
42 static struct passwd _return
= {0};
44 if (_return
.pw_name
== NULL
)
45 __fill_passwd(&_return
);
47 if (_return
.pw_uid
== uid
)