Improved fallback ModeID selection. Works on a wider variety of hardware. Now works...
[AROS.git] / compiler / clib / getpwent.c
bloba0904fdfcb9edb026903b0ce40db3db745b17cb9
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 *getpwent(
17 /* SYNOPSIS */
18 void)
20 /* FUNCTION
22 INPUTS
24 RESULT
26 NOTES
27 Not implemented.
29 EXAMPLE
31 BUGS
33 SEE ALSO
35 INTERNALS
37 ******************************************************************************/{
38 /* FIXME: Implement getpwent() */
39 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
40 errno = ENOSYS;
42 return NULL;