diff --git a/src/ca65/global.c b/src/ca65/global.c
index cc6835562..b76337250 100644
--- a/src/ca65/global.c
+++ b/src/ca65/global.c
@@ -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";
-
-
-
diff --git a/src/ca65/global.h b/src/ca65/global.h
index 5e660055a..cc1a646f9 100644
--- a/src/ca65/global.h
+++ b/src/ca65/global.h
@@ -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 */
diff --git a/src/ca65/listing.c b/src/ca65/listing.c
index 4994f690f..d1682ee15 100644
--- a/src/ca65/listing.c
+++ b/src/ca65/listing.c
@@ -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));
 
diff --git a/src/ca65/main.c b/src/ca65/main.c
index eb81c743b..57d0bb2c6 100644
--- a/src/ca65/main.c
+++ b/src/ca65/main.c
@@ -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 ());
 }