comparison 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
comparison
equal deleted inserted replaced
29149:85d5c2c72cc0 29150:0398ec3316c5
89 #else 89 #else
90 extern char **environ; 90 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
96 #endif
95 #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
99 Lisp_Object Vexec_path, Vexec_directory, Vdata_directory, Vdoc_directory; 101 Lisp_Object Vexec_path, Vexec_directory, Vdata_directory, Vdoc_directory;