diff options
author | obrien <obrien@FreeBSD.org> | 2003-05-03 19:50:41 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-05-03 19:50:41 +0000 |
commit | eeb43ad6dc3b412cb90ac8d37d4a305a942753bc (patch) | |
tree | 8825b4cf774aed5bd37f7a531da4f6ee121e2d5d /usr.bin/xlint | |
parent | 00405b339ccc46e697a5b2b891f922242056f243 (diff) | |
download | FreeBSD-src-eeb43ad6dc3b412cb90ac8d37d4a305a942753bc.zip FreeBSD-src-eeb43ad6dc3b412cb90ac8d37d4a305a942753bc.tar.gz |
GCC 3.3's cpplib does not impliment -$ (forbid the use of $ in identifiers).
Diffstat (limited to 'usr.bin/xlint')
-rw-r--r-- | usr.bin/xlint/xlint/xlint.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/usr.bin/xlint/xlint/xlint.c b/usr.bin/xlint/xlint/xlint.c index f7d0d98..257f493 100644 --- a/usr.bin/xlint/xlint/xlint.c +++ b/usr.bin/xlint/xlint/xlint.c @@ -344,7 +344,6 @@ main(int argc, char *argv[]) appcstrg(&cflags, "-U__GNUC__"); appcstrg(&cflags, "-undef"); #endif - appcstrg(&cflags, "-Wp,-$"); appcstrg(&cflags, "-Wp,-C"); appcstrg(&cflags, "-Wcomment"); appcstrg(&cflags, "-D__LINT__"); |