forwarding a patch that uses the fetch macros to pull in acpica and build it (NicJA).
[AROS.git] / compiler / posixc / getpgid.c
blobbcd0e58bbdf7083e90fc770a8040327af7ea8521
1 /*
2 Copyright © 2017, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <sys/types.h>
8 #include <exec/tasks.h>
9 #include <proto/exec.h>
11 #include <assert.h>
13 #include "__vfork.h"
14 #include "__posixc_intbase.h"
16 /*****************************************************************************
18 NAME */
19 #include <unistd.h>
21 pid_t getpgid(
23 /* SYNOPSIS */
24 pid_t pid)
26 /* FUNCTION
27 Returns the process group ID for the specified process with ID 'pid'.
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
41 INTERNALS
43 ******************************************************************************/
45 return (pid_t) 0;