use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / setgid.c
blobde8e2ef3ae6e2b391e0f8508c72db7f01c77b820
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function setgid().
6 */
8 #include <aros/debug.h>
10 #include <sys/types.h>
12 /*****************************************************************************
14 NAME */
15 #include <unistd.h>
17 int setgid(
19 /* SYNOPSIS */
20 gid_t gid)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 /* FIXME: Implement setgid() */
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 return 0;
44 } /* setgid() */