- Made pciuhci.device and pciehci.device compile again: completed
[AROS.git] / compiler / clib / setpwent.c
blob1212eed4a16a2dc4bf81891cdbb274b534883f23
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 void setpwent(
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 ******************************************************************************/
39 /* TODO: Implement setpwent() */
40 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
41 errno = ENOSYS;
43 return;