diff options
author | obrien <obrien@FreeBSD.org> | 2003-05-01 16:58:57 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-05-01 16:58:57 +0000 |
commit | eaf3fff90a28f606675fd3c1610d0def28d6be67 (patch) | |
tree | 5b53acdbe128b941a338de518c3518890ac9a5ca /bin/sh/arith.y | |
parent | 9f865e3f305382acb9ff15f7e8bcd92f244cfc48 (diff) | |
download | FreeBSD-src-eaf3fff90a28f606675fd3c1610d0def28d6be67.zip FreeBSD-src-eaf3fff90a28f606675fd3c1610d0def28d6be67.tar.gz |
Quiet warnings about copyright[].
Diffstat (limited to 'bin/sh/arith.y')
-rw-r--r-- | bin/sh/arith.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/arith.y b/bin/sh/arith.y index 8438e09..1ced626 100644 --- a/bin/sh/arith.y +++ b/bin/sh/arith.y @@ -93,9 +93,9 @@ expr: ARITH_LPAREN expr ARITH_RPAREN = { $$ = $2; } #if 0 static char sccsid[] = "@(#)arith.y 8.3 (Berkeley) 5/4/95"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include "shell.h" #include "error.h" |