From 4b33b4b3875635f1c1a1aba1a2beb0e946d175c5 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Wed, 11 Mar 2020 02:21:30 +0100 Subject: [PATCH] Remove forward decl of nonexistent function I can only assume it was for debugging? (No, I'm not looking it up the history) --- include/asm/symbol.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/asm/symbol.h b/include/asm/symbol.h index 91aabbb5..fe3de2b9 100644 --- a/include/asm/symbol.h +++ b/include/asm/symbol.h @@ -1,7 +1,7 @@ /* * This file is part of RGBDS. * - * Copyright (c) 1997-2018, Carsten Sorensen and RGBDS contributors. + * Copyright (c) 1997-2020, Carsten Sorensen and RGBDS contributors. * * SPDX-License-Identifier: MIT */ @@ -89,7 +89,6 @@ void sym_SetExportAll(bool set); struct sSymbol *sym_AddLocalReloc(char const *tzSym); struct sSymbol *sym_AddReloc(char const *tzSym); void sym_Export(char const *tzSym); -void sym_PrintSymbolTable(void); struct sSymbol *sym_FindMacro(char const *s); void sym_InitNewMacroArgs(void); void sym_AddNewMacroArg(char const *s);