diff src/sysdep.c @ 4958:8d58e388e71b

(sys_suspend): Use EMACS_GETPGRP macro.
author Richard M. Stallman <rms@gnu.org>
date Wed, 10 Nov 1993 20:02:50 +0000
parents 0c973730e476
children 500f269bf0a8
line wrap: on
line diff
--- a/src/sysdep.c	Wed Nov 10 20:02:12 1993 +0000
+++ b/src/sysdep.c	Wed Nov 10 20:02:50 1993 +0000
@@ -591,11 +591,7 @@
 #ifdef SIGTSTP
 
   {
-#ifdef USG
-    int pgrp = getpgrp ();
-#else
-    int pgrp = getpgrp (0);
-#endif
+    int pgrp = EMACS_GETPGRP (0);
     EMACS_KILLPG (pgrp, SIGTSTP);
   }