use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / getgroups.c
blob5329b184644451605592969d9eacf6ceac3de185
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 /* Implement getgroups() */
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
42 errno = ENOSYS;
44 return 0;