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); int Sys_FileTime (char *path);
void Sys_mkdir (char *path); void Sys_mkdir (char *path);
//
// memory protection
//
void Sys_MakeCodeWriteable (unsigned long startaddr, unsigned long length);
// //
// system IO // 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__)); void Sys_Error (const char *error, ...) __attribute__((__format__(__printf__,1,2), __noreturn__));
// an error will cause the entire program to exit // 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, ...) void Sys_Error (const char *error, ...)
{ {
va_list argptr; va_list argptr;