diff options
author | Chad Loder <cloder@cvs.openbsd.org> | 2005-11-29 20:47:45 +0000 |
---|---|---|
committer | Chad Loder <cloder@cvs.openbsd.org> | 2005-11-29 20:47:45 +0000 |
commit | 575d97931caeaf954124bf64fe1170b0ca301205 (patch) | |
tree | 93282c3b4491c7bf95d1c93336516a6b77a00850 /usr.bin | |
parent | a8c978aecf46439ea23fbb52fb87b12fd546b68a (diff) |
stdlib.h has strtouq in it
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/xlint/lint1/scan.l | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/xlint/lint1/scan.l b/usr.bin/xlint/lint1/scan.l index 268e403f25d..7193bc4194d 100644 --- a/usr.bin/xlint/lint1/scan.l +++ b/usr.bin/xlint/lint1/scan.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: scan.l,v 1.12 2005/11/24 01:45:28 deraadt Exp $ */ +/* $OpenBSD: scan.l,v 1.13 2005/11/29 20:47:44 cloder Exp $ */ /* $NetBSD: scan.l,v 1.8 1995/10/23 13:38:51 jpo Exp $ */ /* @@ -34,7 +34,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: scan.l,v 1.12 2005/11/24 01:45:28 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: scan.l,v 1.13 2005/11/29 20:47:44 cloder Exp $"; #endif #include <stdlib.h> @@ -51,9 +51,6 @@ static char rcsid[] = "$OpenBSD: scan.l,v 1.12 2005/11/24 01:45:28 deraadt Exp $ #define CHAR_MASK (~(~0 << CHAR_BIT)) -/* XXX declaration of strtouq() is missing in stdlib.h ? */ -extern u_quad_t strtouq(const char *, char **, int); - /* Current position (its also updated when an included file is parsed) */ pos_t curr_pos = { 1, "" }; |