diff options
author | obrien <obrien@FreeBSD.org> | 1999-07-30 06:40:00 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-07-30 06:40:00 +0000 |
commit | ffffe6481b0ce4df22a6321864a44b78eed7fa9e (patch) | |
tree | 47183afcd00d1475bd440a2876ec28196acd797e /usr.bin/yacc | |
parent | 937ff682c07f453beefdacfdce0ddd8afc82fad6 (diff) | |
download | FreeBSD-src-ffffe6481b0ce4df22a6321864a44b78eed7fa9e.zip FreeBSD-src-ffffe6481b0ce4df22a6321864a44b78eed7fa9e.tar.gz |
Only output `rcsid' (set to our Id string) into the resulting parser file.
Don't output `sccsid' (set to an anchient UCB Id string) into the parser file.
Submitted by: bde
Diffstat (limited to 'usr.bin/yacc')
-rw-r--r-- | usr.bin/yacc/skeleton.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/yacc/skeleton.c b/usr.bin/yacc/skeleton.c index d52fe2b..8fbfc43 100644 --- a/usr.bin/yacc/skeleton.c +++ b/usr.bin/yacc/skeleton.c @@ -32,8 +32,6 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $Id: skeleton.c,v 1.17 1999/07/29 09:42:14 obrien Exp $ */ #ifndef lint @@ -57,8 +55,8 @@ static char const sccsid[] = "@(#)skeleton.c 5.8 (Berkeley) 4/29/95"; char *banner[] = { "#ifndef lint", - "static char const yysccsid[] = \"@(#)yaccpar 1.9 (Berkeley) 02/21/93\";", - "static char const yyrcsid[] = \"$Id$\";", + "static char const ", + "rcsid[] = \"$Id: skeleton.c,v 1.18 1999/07/29 09:59:06 obrien Exp $\";", "#endif", "#include <stdlib.h>", "#define YYBYACC 1", |