1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-25 13:29:41 +00:00

Terminate after printing the version number when -V is used.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4110 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-09-01 14:41:37 +00:00
parent cc3c3e5f5c
commit 7c613f7a83

View File

@ -667,13 +667,14 @@ static void OptVerbose (const char* Opt attribute ((unused)),
static void OptVersion (const char* Opt attribute ((unused)),
const char* Arg attribute ((unused)))
const char* Arg attribute ((unused)))
/* Print the compiler version */
{
fprintf (stderr,
"cc65 V%u.%u.%u\n"
"SVN version: %s\n",
VER_MAJOR, VER_MINOR, VER_PATCH, SVNVersion);
exit (EXIT_SUCCESS);
}