Module Name: src
Committed By: christos
Date: Fri Apr 18 02:41:32 UTC 2014
Modified Files:
src/usr.bin/xlint/lint1: scan.l
Log Message:
remove attribute keyword
To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 src/usr.bin/xlint/lint1/scan.l
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/xlint/lint1/scan.l
diff -u src/usr.bin/xlint/lint1/scan.l:1.56 src/usr.bin/xlint/lint1/scan.l:1.57
--- src/usr.bin/xlint/lint1/scan.l:1.56 Thu Apr 17 21:39:57 2014
+++ src/usr.bin/xlint/lint1/scan.l Thu Apr 17 22:41:32 2014
@@ -1,5 +1,5 @@
%{
-/* $NetBSD: scan.l,v 1.56 2014/04/18 01:39:57 christos Exp $ */
+/* $NetBSD: scan.l,v 1.57 2014/04/18 02:41:32 christos Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved.
@@ -35,7 +35,7 @@
#include <sys/cdefs.h>
#if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: scan.l,v 1.56 2014/04/18 01:39:57 christos Exp $");
+__RCSID("$NetBSD: scan.l,v 1.57 2014/04/18 02:41:32 christos Exp $");
#endif
#include <stdlib.h>
@@ -203,7 +203,6 @@ static struct kwtab {
} kwtab[] = {
{ "__alignof__", T_ALIGNOF, 0, 0, 0, 0, 0, 0, 0 },
{ "__attribute__",T_ATTRIBUTE, 0, 0, 0, 0, 0, 1, 0 },
- { "attribute", T_ATTRIBUTE, 0, 0, 0, 0, 0, 1, 0 },
{ "__packed__", T_AT_PACKED, 0, 0, 0, 0, 0, 1, 1 },
{ "packed", T_AT_PACKED, 0, 0, 0, 0, 0, 1, 1 },
{ "__aligned__",T_AT_ALIGNED, 0, 0, 0, 0, 0, 1, 1 },