Upgraded GRUB2 to 2.00 release.
[AROS.git] / compiler / clib / getgroups.c
blobfde60651afe801d4941bc254b62c0a7de8989f72
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 <unistd.h>
15 int getgroups(
17 /* SYNOPSIS */
18 int gidsetlen,
19 gid_t *gidset)
21 /* FUNCTION
23 INPUTS
25 RESULT
27 NOTES
28 Not implemented.
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 /* TODO: Implement getgroups() */
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
42 errno = ENOSYS;
44 return 0;