1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-15 22:30:04 +00:00

No copyright message here.

This commit is contained in:
Oliver Schmidt 2013-04-07 22:14:16 +02:00
parent 54299fae5a
commit 29c522fc5a
4 changed files with 3 additions and 12 deletions

View File

@ -82,9 +82,3 @@ unsigned char OrgPerSeg = 0; /* Make .org local to current seg */
unsigned char CComments = 0; /* Allow C like comments */
unsigned char ForceRange = 0; /* Force values into expected range */
unsigned char UnderlineInNumbers = 0; /* Allow underlines in numbers */
/* Misc stuff */
const char Copyright[] = "(C) Copyright 1998-2011 Ullrich von Bassewitz";

View File

@ -85,9 +85,6 @@ extern unsigned char CComments; /* Allow C like comments */
extern unsigned char ForceRange; /* Force values into expected range */
extern unsigned char UnderlineInNumbers; /* Allow underlines in numbers */
/* Misc stuff */
extern const char Copyright[]; /* Copyright string */
/* End of global.h */

View File

@ -225,11 +225,11 @@ static void PrintPageHeader (FILE* F, const ListLine* L)
/* Print the header on the new page */
fprintf (F,
"ca65 V%s - %s\n"
"ca65 V%s\n"
"Main file : %s\n"
"Current file: %.*s\n"
"\n",
GetVersionAsString (), Copyright,
GetVersionAsString (),
InFile,
(int) SB_GetLen (CurFile), SB_GetConstBuf (CurFile));

View File

@ -600,7 +600,7 @@ static void OptVersion (const char* Opt attribute ((unused)),
const char* Arg attribute ((unused)))
/* Print the assembler version */
{
fprintf (stderr, "ca65 V%s - %s\n", GetVersionAsString (), Copyright);
fprintf (stderr, "ca65 V%s\n", GetVersionAsString ());
}