summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/xlint/lint1/scan.l7
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/xlint/lint1/scan.l b/usr.bin/xlint/lint1/scan.l
index aa836d20689..4b254d6d898 100644
--- a/usr.bin/xlint/lint1/scan.l
+++ b/usr.bin/xlint/lint1/scan.l
@@ -1,5 +1,5 @@
%{
-/* $NetBSD: scan.l,v 1.13 1998/12/20 19:05:19 christos Exp $ */
+/* $NetBSD: scan.l,v 1.14 2000/05/10 05:09:17 simonb Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved.
@@ -35,7 +35,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: scan.l,v 1.13 1998/12/20 19:05:19 christos Exp $");
+__RCSID("$NetBSD: scan.l,v 1.14 2000/05/10 05:09:17 simonb Exp $");
#endif
#include <stdlib.h>
@@ -53,9 +53,6 @@ __RCSID("$NetBSD: scan.l,v 1.13 1998/12/20 19:05:19 christos Exp $");
#define CHAR_MASK (~(~0 << CHAR_BIT))
#define YY_NO_UNPUT
-/* XXX declaration of strtouq() is missing in stdlib.h ? */
-extern u_quad_t strtouq __P((const char *, char **, int));
-
/* Current position (its also updated when an included file is parsed) */
pos_t curr_pos = { 1, "", 0 };