1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00
This commit is contained in:
jede 2017-01-29 23:03:01 +01:00
parent bd82bf6a7f
commit db3b6603e5
2 changed files with 8 additions and 8 deletions

View File

@ -226,9 +226,9 @@ static void SetSys (const char* Sys)
CBMSystem ("__C64__");
break;
case TGT_C65:
CBMSystem("__C65__");
break;
case TGT_C65:
CBMSystem("__C65__");
break;
case TGT_VIC20:
CBMSystem ("__VIC20__");
@ -627,11 +627,11 @@ static void OptVerbose (const char* Opt attribute ((unused)),
static void OptVersion (const char* Opt attribute((unused)),
const char* Arg attribute((unused)))
static void OptVersion (const char* Opt attribute ((unused)),
const char* Arg attribute ((unused)))
/* Print the assembler version */
{
fprintf(stderr, "%s V%s\n", ProgName, GetVersionAsString ());
fprintf (stderr, "%s V%s\n", ProgName, GetVersionAsString ());
exit(EXIT_SUCCESS);
}

View File

@ -747,8 +747,8 @@ static void OptVerbose (const char* Opt attribute ((unused)),
static void OptVersion (const char* Opt attribute((unused)),
const char* Arg attribute((unused)))
static void OptVersion (const char* Opt attribute ((unused)),
const char* Arg attribute ((unused)))
/* Print the compiler version */
{
fprintf (stderr, "%s V%s\n", ProgName, GetVersionAsString ());