muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / getpgrp.c
blob85f4b87af255b9453adbace2b3e2d4257762f0cd
1 /*
2 Copyright © 2004-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function getpgrp().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
14 #include <unistd.h>
16 pid_t getpgrp(
18 /* SYNOPSIS */
19 void)
21 /* FUNCTION
23 INPUTS
25 RESULT
27 NOTES
28 Not implemented.
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 /* TODO: Implement getpgrp() */
41 AROS_FUNCTION_NOT_IMPLEMENTED("posixc");
43 return 0;