From 749ef3b9f28e1c9d75cb24788a0eb6283eb4e316 Mon Sep 17 00:00:00 2001 From: sezero Date: Tue, 27 Apr 2010 12:37:20 +0000 Subject: [PATCH] sys.h, sys_sdl.c: Removed unused Sys_MakeCodeWriteable and Sys_DebugLog. git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@160 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/sys.h | 7 ------- Quake/sys_sdl.c | 8 -------- 2 files changed, 15 deletions(-) diff --git a/Quake/sys.h b/Quake/sys.h index 2fa983cc..7e74651e 100644 --- a/Quake/sys.h +++ b/Quake/sys.h @@ -41,16 +41,9 @@ int Sys_FileWrite (int handle, void *data, int count); int Sys_FileTime (char *path); void Sys_mkdir (char *path); -// -// memory protection -// -void Sys_MakeCodeWriteable (unsigned long startaddr, unsigned long length); - // // system IO // -void Sys_DebugLog(const char *file, const char *fmt, ...) __attribute__((__format__(__printf__,2,3))); - void Sys_Error (const char *error, ...) __attribute__((__format__(__printf__,1,2), __noreturn__)); // an error will cause the entire program to exit diff --git a/Quake/sys_sdl.c b/Quake/sys_sdl.c index 8a5f2c9d..a95ea102 100644 --- a/Quake/sys_sdl.c +++ b/Quake/sys_sdl.c @@ -149,14 +149,6 @@ void Sys_mkdir (char *path) } -void Sys_MakeCodeWriteable (unsigned long startaddr, unsigned long length) -{ -} - -void Sys_DebugLog(const char *file, const char *fmt, ...) -{ -} - void Sys_Error (const char *error, ...) { va_list argptr;