Tracked rename of hashstr -> hashfunc.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5156 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
b8e68bed95
commit
b8d43cee42
7 changed files with 17 additions and 17 deletions
|
@ -36,7 +36,7 @@
|
|||
#include <string.h>
|
||||
|
||||
/* common */
|
||||
#include "hashstr.h"
|
||||
#include "hashfunc.h"
|
||||
#include "xmalloc.h"
|
||||
|
||||
/* ar65 */
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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)) {
|
||||
|
|
|
@ -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 */
|
||||
{
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue