1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

Fixing old pull request

This commit is contained in:
jede 2017-01-29 22:53:50 +01:00
parent 0f8fb4d79d
commit 2697499b3c
2 changed files with 10 additions and 10 deletions

View File

@ -222,14 +222,14 @@ static void SetSys (const char* Sys)
CBMSystem ("__C16__");
break;
case TGT_C65:
CBMSystem("__C65__");
break;
case TGT_C64:
CBMSystem ("__C64__");
break;
case TGT_C65:
CBMSystem("__C65__");
break;
case TGT_VIC20:
CBMSystem ("__VIC20__");
break;
@ -628,11 +628,11 @@ 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 assembler version */
{
fprintf(stderr, "%s V%s\n", ProgName, GetVersionAsString());
exit(EXIT_SUCCESS);
fprintf(stderr, "%s V%s\n", ProgName, GetVersionAsString());
exit(EXIT_SUCCESS);
}

View File

@ -748,11 +748,11 @@ 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, "%s V%s\n", ProgName, GetVersionAsString());
exit(EXIT_SUCCESS);
fprintf(stderr, "%s V%s\n", ProgName, GetVersionAsString());
exit(EXIT_SUCCESS);
}