summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-06-30 06:26:34 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-06-30 06:26:34 +0000
commiteaf6b9b82d30198b02e70a7536fcd28b7c264a7a (patch)
treea045d5da89623e0b9416b04c43abbf05f8a3db86 /usr.bin
parent0311bda24b96581d8b9ab4b2f55b3473f7382197 (diff)
time_t is not long; not even in a comment
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ctags/C.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ctags/C.c b/usr.bin/ctags/C.c
index c2a9c8fac95..cfb89df3b13 100644
--- a/usr.bin/ctags/C.c
+++ b/usr.bin/ctags/C.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: C.c,v 1.2 1996/06/26 05:32:26 deraadt Exp $ */
+/* $OpenBSD: C.c,v 1.3 1997/06/30 06:26:33 deraadt Exp $ */
/* $NetBSD: C.c,v 1.3 1995/03/26 20:14:02 glass Exp $ */
/*
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)C.c 8.4 (Berkeley) 4/2/94";
#else
-static char rcsid[] = "$OpenBSD: C.c,v 1.2 1996/06/26 05:32:26 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: C.c,v 1.3 1997/06/30 06:26:33 deraadt Exp $";
#endif
#endif /* not lint */
@@ -173,7 +173,7 @@ c_entries()
* level as the typedef. Ignoring "structs", they are
* tricky, since you can find:
*
- * "typedef long time_t;"
+ * "typedef int time_t;"
* "typedef unsigned int u_int;"
* "typedef unsigned int u_int [10];"
*