summaryrefslogtreecommitdiff
path: root/bin/ksh/proto.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-12-22 17:14:35 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-12-22 17:14:35 +0000
commit876705771ce25a4fde66ddfeeaed78e36c2522fa (patch)
tree5302300c6a77585e42ee9c9473fe0405e5eb5896 /bin/ksh/proto.h
parentd8ab4b6082e45f27eab20a66b1077ed25bcc3a30 (diff)
Use stdbool.h instead of rolling our own bools.
Diffstat (limited to 'bin/ksh/proto.h')
-rw-r--r--bin/ksh/proto.h4
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);