diff options
Diffstat (limited to 'src/w32proc.c')
-rw-r--r-- | src/w32proc.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/w32proc.c b/src/w32proc.c index a0ff96e593c..adef7651b8c 100644 --- a/src/w32proc.c +++ b/src/w32proc.c @@ -236,6 +236,18 @@ setpgrp (int pid, int gid) return 0; } +pid_t +getpgrp (void) +{ + return getpid (); +} + +int +setpgid (pid_t pid, pid_t pgid) +{ + return 0; +} + /* Emulations of interval timers. Limitations: only ITIMER_REAL and ITIMER_PROF are supported. |