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
This commit is contained in:
sezero 2010-04-27 12:37:20 +00:00
parent 31991cd33e
commit 749ef3b9f2
2 changed files with 0 additions and 15 deletions

View File

@ -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

View File

@ -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;