summaryrefslogtreecommitdiff
path: root/usr.bin/xlint/lint1/lint1.h
diff options
context:
space:
mode:
authorChad Loder <cloder@cvs.openbsd.org>2005-11-29 19:38:10 +0000
committerChad Loder <cloder@cvs.openbsd.org>2005-11-29 19:38:10 +0000
commit2820aee78fe5646afc680626f831bd3d91ad2b37 (patch)
treecfd708265be5265a937945615a42f6ae7f04949a /usr.bin/xlint/lint1/lint1.h
parentf7d2f30f2f00b4e44b9052d09a18808a04b6445c (diff)
Typos in comments: explizit and implizit
Diffstat (limited to 'usr.bin/xlint/lint1/lint1.h')
-rw-r--r--usr.bin/xlint/lint1/lint1.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/xlint/lint1/lint1.h b/usr.bin/xlint/lint1/lint1.h
index c57a75a6f08..2417d2feaf2 100644
--- a/usr.bin/xlint/lint1/lint1.h
+++ b/usr.bin/xlint/lint1/lint1.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: lint1.h,v 1.4 2005/11/23 18:47:41 cloder Exp $ */
+/* $OpenBSD: lint1.h,v 1.5 2005/11/29 19:38:09 cloder Exp $ */
/* $NetBSD: lint1.h,v 1.6 1995/10/02 17:31:41 jpo Exp $ */
/*
@@ -204,7 +204,7 @@ typedef struct sym {
u_int s_reg : 1; /* symbol is register variable */
u_int s_defarg : 1; /* undefined symbol in old style function
definition */
- u_int s_rimpl : 1; /* return value of function implizit decl. */
+ u_int s_rimpl : 1; /* return value of function implicit decl. */
u_int s_osdef : 1; /* symbol stems from old style function def. */
u_int s_inline : 1; /* true if this is a inline function */
struct sym *s_xsym; /* for local declared external symbols pointer
@@ -256,7 +256,7 @@ typedef struct tnode {
op_t tn_op; /* operator */
type_t *tn_type; /* type */
u_int tn_lvalue : 1; /* node is lvalue */
- u_int tn_cast : 1; /* if tn_op == CVT its an explizit cast */
+ u_int tn_cast : 1; /* if tn_op == CVT its an explicit cast */
u_int tn_parn : 1; /* node parenthesized */
union {
struct {