Fixed some typos/errors in comments and docs.
[AROS.git] / compiler / clib / setgid.c
blob09ab86d5f86ffe1249b0d51534011e0363f38d64
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>
11 #include <errno.h>
13 /*****************************************************************************
15 NAME */
16 #include <unistd.h>
18 int setgid(
20 /* SYNOPSIS */
21 gid_t gid)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
30 Not implemented.
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 /* TODO: Implement setgid() */
43 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
44 errno = ENOSYS;
46 return 0;
47 } /* setgid() */