muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / endgrent.c
blob18532510b2c6ff2e30e4cbdd0c48d88080d8af18
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 */
12 #include <grp.h>
14 void endgrent(
16 /* SYNOPSIS */
17 void)
19 /* FUNCTION
21 INPUTS
23 RESULT
25 NOTES
26 Not implemented.
28 EXAMPLE
30 BUGS
32 SEE ALSO
34 INTERNALS
36 ******************************************************************************/
38 /* TODO: Implement endgrent() */
39 AROS_FUNCTION_NOT_IMPLEMENTED("posixc");
40 errno = ENOSYS;
42 return;