aboutsummaryrefslogtreecommitdiffstats
path: root/src/callproc.c
diff options
context:
space:
mode:
authorGerd Moellmann2000-05-24 13:08:10 +0000
committerGerd Moellmann2000-05-24 13:08:10 +0000
commit2b7e8799bb9d0ff310d203a78e31acb1af12f1a3 (patch)
treec7046f64422d5c78c9d7b458b8f00cbeb2a1f5cd /src/callproc.c
parent879bde8346506bdcc00ab2f20865da5b1dc6195f (diff)
downloademacs-2b7e8799bb9d0ff310d203a78e31acb1af12f1a3.tar.gz
emacs-2b7e8799bb9d0ff310d203a78e31acb1af12f1a3.zip
(setpgrp): Don't define if USG and BSD_PGRPS are not defined.
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 5acdcfe2e1b..b23a0bb48e5 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -91,8 +91,10 @@ extern char **environ;
91#endif 91#endif
92 92
93#ifdef HAVE_SETPGID 93#ifdef HAVE_SETPGID
94#if !defined (USG) || defined (BSD_PGRPS)
94#define setpgrp setpgid 95#define setpgrp setpgid
95#endif 96#endif
97#endif
96 98
97#define max(a, b) ((a) > (b) ? (a) : (b)) 99#define max(a, b) ((a) > (b) ? (a) : (b))
98 100