From 659b78955d8f7e6af4068ae2144ad4b5bb1894de Mon Sep 17 00:00:00 2001 From: simonb Date: Wed, 10 May 2000 05:09:17 +0000 Subject: Don't need local extern declaration of strtouq() - it's in . --- usr.bin/xlint/lint1/scan.l | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'usr.bin') 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 #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 @@ -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 }; -- cgit