summaryrefslogtreecommitdiff
path: root/src/callproc.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-05-23 22:00:25 +0000
committerGerd Moellmann <gerd@gnu.org>2000-05-23 22:00:25 +0000
commitf95c3f91250537d195a754ed9730e9578c4df978 (patch)
treef8f46d60aebd9e0f4dce0cbfde2e827babe413f9 /src/callproc.c
parentdd04d6c153893e58d42aeac4bb7f5e6d5735a201 (diff)
(setpgrp) [HAVE_SETPGID]: Define as setpgid.
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/callproc.c b/src/callproc.c
index eb7ca1b232f..5acdcfe2e1b 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -90,6 +90,10 @@ extern noshare char **environ;
extern char **environ;
#endif
+#ifdef HAVE_SETPGID
+#define setpgrp setpgid
+#endif
+
#define max(a, b) ((a) > (b) ? (a) : (b))
Lisp_Object Vexec_path, Vexec_directory, Vdata_directory, Vdoc_directory;