muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / getgid.c
blobeb9982c8c07d32ea704a7e5d4247df39fadbcbca
1 /*
2 Copyright © 2003-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function getgid().
6 */
8 /*****************************************************************************
10 NAME */
11 #include <unistd.h>
13 gid_t getgid(
15 /* SYNOPSIS */
16 void)
18 /* FUNCTION
20 INPUTS
22 RESULT
24 NOTES
25 Always return 0 for the moment.
27 EXAMPLE
29 BUGS
31 SEE ALSO
32 setgid()
34 INTERNALS
36 ******************************************************************************/
38 return 0;
39 } /* getgid() */