]> git.eshelyaron.com Git - emacs.git/commitdiff
(GETPGRP_NO_ARG): Always define it, if __GNU_LIBRARY__.
authorRichard M. Stallman <rms@gnu.org>
Sat, 29 Jun 1996 05:04:29 +0000 (05:04 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 29 Jun 1996 05:04:29 +0000 (05:04 +0000)
src/systty.h

index 4814c913b01d5597bbfc6caa33f3e25997ddac6a..59e5ad813f73acd8b3a6bef16be4a51cd7d1d94e 100644 (file)
@@ -292,13 +292,18 @@ static struct sensemode {
 
 #endif
 
-/* EMACS_GETPGRP (arg) returns the process group of the terminal.  */
+/* EMACS_GETPGRP (arg) returns the process group of the process.  */
 
+#ifdef __GNU_LIBRARY__
+/* GNU libc by default defines getpgrp with no args on all systems.  */.
+#define GETPGRP_NO_ARG
+#else /* not __GNU_LIBRARY__ */
 #if defined (USG) && !defined (GETPGRP_NEEDS_ARG)
 #  if !defined (GETPGRP_NO_ARG)
 #    define GETPGRP_NO_ARG
 #  endif
 #endif
+#endif /* not __GNU_LIBRARY__ */
 
 #if defined (GETPGRP_NO_ARG)
 #  define EMACS_GETPGRP(x) getpgrp()