diff src/callproc.c @ 29150:0398ec3316c5

(setpgrp): Don't define if USG and BSD_PGRPS are not defined.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 24 May 2000 13:08:10 +0000
parents 63520d6017fb
children d9e38a948951
line wrap: on
line diff
--- a/src/callproc.c	Wed May 24 12:07:06 2000 +0000
+++ b/src/callproc.c	Wed May 24 13:08:10 2000 +0000
@@ -91,8 +91,10 @@
 #endif
 
 #ifdef HAVE_SETPGID
+#if !defined (USG) || defined (BSD_PGRPS)
 #define setpgrp setpgid
 #endif
+#endif
 
 #define max(a, b) ((a) > (b) ? (a) : (b))