diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-12-22 17:14:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-12-22 17:14:35 +0000 |
commit | 876705771ce25a4fde66ddfeeaed78e36c2522fa (patch) | |
tree | 5302300c6a77585e42ee9c9473fe0405e5eb5896 /bin/ksh/proto.h | |
parent | d8ab4b6082e45f27eab20a66b1077ed25bcc3a30 (diff) |
Use stdbool.h instead of rolling our own bools.
Diffstat (limited to 'bin/ksh/proto.h')
-rw-r--r-- | bin/ksh/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/proto.h b/bin/ksh/proto.h index 526f12d3bda..d481d58aeb7 100644 --- a/bin/ksh/proto.h +++ b/bin/ksh/proto.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proto.h,v 1.20 2004/12/20 11:34:26 otto Exp $ */ +/* $OpenBSD: proto.h,v 1.21 2004/12/22 17:14:34 millert Exp $ */ /* * prototypes for PD-KSH @@ -244,7 +244,7 @@ void newblock(void); void popblock(void); void initvar(void); struct tbl * global(const char *); -struct tbl * local(const char *, bool_t); +struct tbl * local(const char *, bool); char * str_val(struct tbl *); long intval(struct tbl *); int setstr(struct tbl *, const char *, int); |