version.c revision 132736
183098Smp/* $FreeBSD: head/contrib/gcc/version.c 132736 2004-07-28 04:27:06Z kan $ */
283098Smp#include "version.h"
383098Smp
483098Smp/* This is the string reported as the version number by all components
583098Smp   of the compiler.  If you distribute a modified version of GCC,
683098Smp   please modify this string to indicate that, e.g. by putting your
783098Smp   organization's name in parentheses at the end of the string.  */
883098Smp
983098Smpconst char version_string[] = "3.4.2 [FreeBSD] 20040728";
1083098Smp
1183098Smp/* This is the location of the online document giving instructions for
1283098Smp   reporting bugs.  If you distribute a modified version of GCC,
1383098Smp   please change this to refer to a document giving instructions for
1483098Smp   reporting bugs to you, not us.  (You are of course welcome to
1583098Smp   forward us bugs reported to you, if you determine that they are
1683098Smp   not bugs in your modifications.)  */
1783098Smp
18const char bug_report_url[] = "<URL:http://gcc.gnu.org/bugs.html>";
19