summaryrefslogtreecommitdiff
path: root/bin/ksh/sh.h
diff options
context:
space:
mode:
authorVincent Labrecque <vincent@cvs.openbsd.org>2002-10-07 23:09:33 +0000
committerVincent Labrecque <vincent@cvs.openbsd.org>2002-10-07 23:09:33 +0000
commite2712a8718933bd11c534f9b68e04f047723521d (patch)
tree00b658edb1c00381aea3a973158f3bbb790256a7 /bin/ksh/sh.h
parent855a50740f169e7b58cae5423247b6a6771b2e05 (diff)
int -> uid_t
ok millert
Diffstat (limited to 'bin/ksh/sh.h')
-rw-r--r--bin/ksh/sh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/sh.h b/bin/ksh/sh.h
index 58d54161813..4e8c4ac83ca 100644
--- a/bin/ksh/sh.h
+++ b/bin/ksh/sh.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sh.h,v 1.11 2002/03/01 13:13:54 espie Exp $ */
+/* $OpenBSD: sh.h,v 1.12 2002/10/07 23:09:32 vincent Exp $ */
/*
* Public Domain Bourne/Korn shell
@@ -373,7 +373,7 @@ typedef INT32 Tflag;
EXTERN const char *kshname; /* $0 */
EXTERN pid_t kshpid; /* $$, shell pid */
EXTERN pid_t procpid; /* pid of executing process */
-EXTERN int ksheuid; /* effective uid of shell */
+EXTERN uid_t ksheuid; /* effective uid of shell */
EXTERN int exstat; /* exit status */
EXTERN int subst_exstat; /* exit status of last $(..)/`..` */
EXTERN const char *safe_prompt; /* safe prompt if PS1 substitution fails */