comparison src/s/gnu-linux.h @ 22229:4fb09bb7d2f9

(setpgrp): Remove extra parens around parameters.
author Richard M. Stallman <rms@gnu.org>
date Mon, 25 May 1998 16:01:08 +0000
parents 8555e6a74cb9
children dcc1ebab38c1
comparison
equal deleted inserted replaced
22228:a12c92c5f4e9 22229:4fb09bb7d2f9
299 299
300 /* Use BSD process groups, but use setpgid() instead of setpgrp() to 300 /* Use BSD process groups, but use setpgid() instead of setpgrp() to
301 actually set a process group. */ 301 actually set a process group. */
302 302
303 #define BSD_PGRPS 303 #define BSD_PGRPS
304 #define setpgrp(pid,pgid) setpgid((pid),(pgid)) 304 #define setpgrp(pid,pgid) setpgid(pid,pgid)