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