summaryrefslogtreecommitdiff
path: root/bin/ksh/proto.h
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2005-12-11 20:31:22 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2005-12-11 20:31:22 +0000
commit8083086402c947183d42fff909504862397d8c0d (patch)
tree9ca9e8b8e42385c5859c6452f567575310925baf /bin/ksh/proto.h
parent634e51cbb0dcbacc58c0cdbe439f9d2c412befa0 (diff)
fix a few name clashes with libc; found by lint. ok deraadt@
Diffstat (limited to 'bin/ksh/proto.h')
-rw-r--r--bin/ksh/proto.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/ksh/proto.h b/bin/ksh/proto.h
index 67b3b1bfbd6..26f59f5e520 100644
--- a/bin/ksh/proto.h
+++ b/bin/ksh/proto.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: proto.h,v 1.28 2005/12/11 18:53:51 deraadt Exp $ */
+/* $OpenBSD: proto.h,v 1.29 2005/12/11 20:31:21 otto Exp $ */
/*
* prototypes for PD-KSH
@@ -206,13 +206,13 @@ void initkeywords(void);
struct op * compile(Source *);
/* table.c */
unsigned int hash(const char *);
-void tinit(struct table *, Area *, int);
-struct tbl * tsearch(struct table *, const char *, unsigned int);
-struct tbl * tenter(struct table *, const char *, unsigned int);
-void tdelete(struct tbl *);
-void twalk(struct tstate *, struct table *);
-struct tbl * tnext(struct tstate *);
-struct tbl ** tsort(struct table *);
+void ktinit(struct table *, Area *, int);
+struct tbl * ktsearch(struct table *, const char *, unsigned int);
+struct tbl * ktenter(struct table *, const char *, unsigned int);
+void ktdelete(struct tbl *);
+void ktwalk(struct tstate *, struct table *);
+struct tbl * ktnext(struct tstate *);
+struct tbl ** ktsort(struct table *);
/* trace.c */
/* trap.c */
void inittraps(void);