aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-05-24 13:08:10 +0000
committerGerd Moellmann <[email protected]>2000-05-24 13:08:10 +0000
commit2b7e8799bb9d0ff310d203a78e31acb1af12f1a3 (patch)
treec7046f64422d5c78c9d7b458b8f00cbeb2a1f5cd /src/emacs.c
parent879bde8346506bdcc00ab2f20865da5b1dc6195f (diff)
(setpgrp): Don't define if USG and BSD_PGRPS are not defined.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 4fcff1391f..835cb5a79e 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -65,8 +65,10 @@ Boston, MA 02111-1307, USA. */
#endif
#ifdef HAVE_SETPGID
+#if !defined (USG) || defined (BSD_PGRPS)
#define setpgrp setpgid
#endif
+#endif
extern void malloc_warning ();
extern void set_time_zone_rule ();