summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd-compat/bsd-misc.c')
-rw-r--r--openbsd-compat/bsd-misc.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 3ef373f56..0cff2e423 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -247,3 +247,16 @@ int isblank(int c)
247 return (c == ' ' || c == '\t'); 247 return (c == ' ' || c == '\t');
248} 248}
249#endif 249#endif
250
251#ifndef HAVE_GETPGID
252pid_t
253getpgid(pid_t pid)
254{
255#ifdef HAVE_GETPGRP
256 if (pid == 0)
257 return getpgrp();
258#endif
259 errno = ESRCH;
260 return -1;
261}
262#endif