diff options
author | Chad Loder <cloder@cvs.openbsd.org> | 2005-03-13 19:08:28 +0000 |
---|---|---|
committer | Chad Loder <cloder@cvs.openbsd.org> | 2005-03-13 19:08:28 +0000 |
commit | bdf6b1e152b7a310c2aa2cdf8e284d1428812bdb (patch) | |
tree | 424204f2ae252aa6a95e1060489edc0524673db7 /bin/csh | |
parent | 8e34ec014e579d68d252f4a6c77f5c8fc1bfc15e (diff) |
Use pid_t where appropriate. From Bruno Rohee (thanks).
Diffstat (limited to 'bin/csh')
-rw-r--r-- | bin/csh/csh.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/csh/csh.h b/bin/csh/csh.h index 7b95f50dc47..492784939a1 100644 --- a/bin/csh/csh.h +++ b/bin/csh/csh.h @@ -1,4 +1,4 @@ -/* $OpenBSD: csh.h,v 1.16 2005/02/25 16:08:18 deraadt Exp $ */ +/* $OpenBSD: csh.h,v 1.17 2005/03/13 19:08:27 cloder Exp $ */ /* $NetBSD: csh.h,v 1.9 1995/03/21 09:02:40 cgd Exp $ */ /*- @@ -151,11 +151,11 @@ int backpid; /* Pid of the last background process */ uid_t uid, euid; /* Invokers uid */ gid_t gid, egid; /* Invokers gid */ time_t chktim; /* Time mail last checked */ -int shpgrp; /* Pgrp of shell */ -int tpgrp; /* Terminal process group */ +pid_t shpgrp; /* Pgrp of shell */ +pid_t tpgrp; /* Terminal process group */ /* If tpgrp is -1, leave tty alone! */ -int opgrp; /* Initial pgrp and tty pgrp */ +pid_t opgrp; /* Initial pgrp and tty pgrp */ /* |