use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / getpwuid.c
blob223361330d82ae07cc1bf4afa750f8577bb5185b
1 /*
2 Copyright © 2004-2010, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
7 #include <errno.h>
9 /*****************************************************************************
11 NAME */
13 #include <pwd.h>
15 struct passwd *getpwuid(
17 /* SYNOPSIS */
18 uid_t uid)
20 /* FUNCTION
22 INPUTS
24 RESULT
26 NOTES
28 EXAMPLE
30 BUGS
32 SEE ALSO
34 INTERNALS
36 ******************************************************************************/
38 /* FIXME: Implement getpwuid() */
39 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
40 errno = ENOSYS;
42 return NULL;