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

when compiling for windows.


git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@85 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2010-02-27 07:45:12 +00:00
parent d1e09241f3
commit 7d6a47a0f2

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;