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