1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 12:40:49 -08:00

(GETPGRP_NO_ARG): Always define it, if __GNU_LIBRARY__.

This commit is contained in:
Richard M. Stallman 1996-06-29 05:04:29 +00:00
parent 5377087736
commit 281bbdfb6a

View 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()