diff options
author | dt <dt@FreeBSD.org> | 1999-08-25 14:22:20 +0000 |
---|---|---|
committer | dt <dt@FreeBSD.org> | 1999-08-25 14:22:20 +0000 |
commit | dc136bfb0fa8acc1013f6338d4d2efc9621b7c3e (patch) | |
tree | 4529596a51d7aa2fc2a94653fbac06a081a79483 /usr.bin/xlint | |
parent | 09bd601964391c338888981d372d427b70b89fe6 (diff) | |
download | FreeBSD-src-dc136bfb0fa8acc1013f6338d4d2efc9621b7c3e.zip FreeBSD-src-dc136bfb0fa8acc1013f6338d4d2efc9621b7c3e.tar.gz |
Declaration of strtouq() is not missing from stdlib.h, so don't redeclare
it.
Diffstat (limited to 'usr.bin/xlint')
-rw-r--r-- | usr.bin/xlint/lint1/scan.l | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/usr.bin/xlint/lint1/scan.l b/usr.bin/xlint/lint1/scan.l index ece6ef9..c76ebcf 100644 --- a/usr.bin/xlint/lint1/scan.l +++ b/usr.bin/xlint/lint1/scan.l @@ -50,9 +50,6 @@ static char rcsid[] = "$NetBSD: scan.l,v 1.8 1995/10/23 13:38:51 jpo Exp $"; #define CHAR_MASK (~(~0 << CHAR_BIT)) -/* 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, "" }; |