sys_sdl.c: renamed filelength to Sys_filelength in order to avoid conflicts

when compiling for windows.


git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@85 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2010-02-27 07:45:12 +00:00
parent 1f4fbfe833
commit 75f1f1cb5c
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ int findhandle (void)
return -1; return -1;
} }
int filelength (FILE *f) int Sys_filelength (FILE *f)
{ {
int pos; int pos;
int end; int end;
@ -72,7 +72,7 @@ int Sys_FileOpenRead (char *path, int *hndl)
{ {
sys_handles[i] = f; sys_handles[i] = f;
*hndl = i; *hndl = i;
retval = filelength(f); retval = Sys_filelength(f);
} }
return retval; return retval;