muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / getgroups.c
blob59bd38e74d7add3379c4623b48732a95bd2db2aa
1 /*
2 Copyright © 2004-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function getgroups().
6 */
8 #include <aros/debug.h>
9 #include <errno.h>
11 /*****************************************************************************
13 NAME */
15 #include <unistd.h>
17 int getgroups(
19 /* SYNOPSIS */
20 int gidsetlen,
21 gid_t *gidset)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
30 Not implemented.
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 /* TODO: Implement getgroups() */
43 AROS_FUNCTION_NOT_IMPLEMENTED("posixc");
44 errno = ENOSYS;
46 return 0;