]> git.sur5r.net Git - cc65/commitdiff
Tracked rename of hashstr -> hashfunc.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 12 Aug 2011 15:36:53 +0000 (15:36 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 12 Aug 2011 15:36:53 +0000 (15:36 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5156 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ar65/exports.c
src/cc65/codeseg.c
src/cc65/macrotab.c
src/cc65/symtab.c
src/ld65/exports.c
src/ld65/extsyms.c
src/ld65/segments.c

index 84f0a0308663a2e808f4662e103619c592c0d4c4..488d584970b1d1042e8f7497629a8ddaba8b29d5 100644 (file)
@@ -36,7 +36,7 @@
 #include <string.h>
 
 /* common */
-#include "hashstr.h"
+#include "hashfunc.h"
 #include "xmalloc.h"
 
 /* ar65 */
index 492a322b969438dac42b5304b59dac928f207168..52516abfecc03a5bca3d906899c002c68cea51cd 100644 (file)
@@ -6,7 +6,7 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2001-2009, Ullrich von Bassewitz                                      */
+/* (C) 2001-2011, Ullrich von Bassewitz                                      */
 /*                Roemerstrasse 52                                           */
 /*                D-70794 Filderstadt                                        */
 /* EMail:         uz@cc65.org                                                */
@@ -41,7 +41,7 @@
 #include "check.h"
 #include "debugflag.h"
 #include "global.h"
-#include "hashstr.h"
+#include "hashfunc.h"
 #include "strbuf.h"
 #include "strutil.h"
 #include "xmalloc.h"
index 35639f832326431869e73eabc6ff5f29b9028379..d0b18bdf14060be619f9616ff5f503e3dc9dc381 100644 (file)
@@ -6,7 +6,7 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2008, Ullrich von Bassewitz                                      */
+/* (C) 2000-2011, Ullrich von Bassewitz                                      */
 /*                Roemerstrasse 52                                           */
 /*                D-70794 Filderstadt                                        */
 /* EMail:         uz@cc65.org                                                */
@@ -37,7 +37,7 @@
 #include <string.h>
 
 /* common */
-#include "hashstr.h"
+#include "hashfunc.h"
 #include "xmalloc.h"
 
 /* cc65 */
index 5a7c740d3316169b4cb2cc491e6d80f0ae30b180..18b9696d4f80acb620c113b2250ef5db78bcd1f7 100644 (file)
@@ -6,7 +6,7 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2009, Ullrich von Bassewitz                                      */
+/* (C) 2000-2011, Ullrich von Bassewitz                                      */
 /*                Roemerstrasse 52                                           */
 /*                D-70794 Filderstadt                                        */
 /* EMail:         uz@cc65.org                                                */
@@ -41,7 +41,7 @@
 /* common */
 #include "check.h"
 #include "debugflag.h"
-#include "hashstr.h"
+#include "hashfunc.h"
 #include "xmalloc.h"
 
 /* cc65 */
@@ -162,7 +162,7 @@ static void CheckSymTable (SymTable* Tab)
             * defined but not used.
             */
            if (((Flags & SC_AUTO) || (Flags & SC_STATIC)) && (Flags & SC_EXTERN) == 0) {
-               if (SymIsDef (Entry) && !SymIsRef (Entry) && 
+               if (SymIsDef (Entry) && !SymIsRef (Entry) &&
                     !SymHasAttr (Entry, atUnused)) {
                    if (Flags & SC_PARAM) {
                         if (IS_Get (&WarnUnusedParam)) {
index 486860618e4d74f8958b70f310813d42d988cc88..13ec49d8b14971c2295491f3f2434e08bf7a0be6 100644 (file)
@@ -40,7 +40,7 @@
 /* common */
 #include "addrsize.h"
 #include "check.h"
-#include "hashstr.h"
+#include "hashfunc.h"
 #include "symdefs.h"
 #include "xmalloc.h"
 
@@ -745,7 +745,7 @@ static void PrintUnresolved (ExpCheckFunc F, void* Data)
 }
 
 
-                     
+
 static int CmpExpName (const void* K1, const void* K2)
 /* Compare function for qsort */
 {
index 0ca35eb54543bde03855dd519536d437cdd0270f..261af681c8c5f51a36f973885bc62321f9983ad4 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                extsyms.c                                 */
+/*                                extsyms.c                                 */
 /*                                                                           */
 /*     Handle program external symbols for relocatable output formats       */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1999-2008 Ullrich von Bassewitz                                       */
-/*               Roemerstrasse 52                                            */
-/*               D-70794 Filderstadt                                         */
-/* EMail:        uz@cc65.org                                                 */
+/* (C) 1999-2011, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
@@ -36,7 +36,7 @@
 #include <string.h>
 
 /* common */
-#include "hashstr.h"
+#include "hashfunc.h"
 #include "xmalloc.h"
 
 /* ld65 */
index ae709d0eb186e6bde67aa278397b583d9de91fdf..5397fbcefd9e53506c7a39abbf128f6057f7efce 100644 (file)
@@ -41,7 +41,7 @@
 #include "coll.h"
 #include "exprdefs.h"
 #include "fragdefs.h"
-#include "hashstr.h"
+#include "hashfunc.h"
 #include "print.h"
 #include "segdefs.h"
 #include "symdefs.h"