Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: basesrc



Module Name:    basesrc
Committed By:   explorer
Date:           Wed Jun  7 23:54:18 UTC 2000

Modified Files:
        basesrc/usr.bin/yacc: output.c skeleton.c

Log Message:
Use
        const char *yyname[] = {...};
        const char *yyrule[] = {...};
rather than
        char *yyname[] = {...};
        char *yyrule[] = {...};

to prevent warnings about
        initialization discards `const' from pointer target type
when the output of yacc is compiled with a picky warning level.


To generate a diff of this commit:
cvs rdiff -r1.6 -r1.7 basesrc/usr.bin/yacc/output.c
cvs rdiff -r1.17 -r1.18 basesrc/usr.bin/yacc/skeleton.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.




Home | Main Index | Thread Index | Old Index