crete an idle task to run when theres ... umm. .. nothing to do ..
[AROS.git] / compiler / clib / getpwnam.c
blob64e5ac8ac831d33f4b16e474f59b837b88c50e7f
1 /*
2 Copyright © 2004, 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 *getpwnam(
17 /* SYNOPSIS */
18 const char *name)
20 /* FUNCTION
22 INPUTS
24 RESULT
26 NOTES
27 Not implemented.
29 EXAMPLE
31 BUGS
33 SEE ALSO
35 INTERNALS
37 ******************************************************************************/
39 /* TODO: Implement getpwnam() */
40 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
41 errno = ENOSYS;
43 return NULL;