filesize() function was unused! guess I'll remove it

This commit is contained in:
bentley
2010-01-18 15:45:38 -07:00
parent 761656c54b
commit b1469902d6

View File

@@ -46,19 +46,6 @@ ULONG ulMacroReturnValue;
#define STAT_isMacroArg 2
#define STAT_isREPTBlock 3
ULONG
filesize(char *s)
{
FILE *f;
ULONG size = 0;
if ((f = fopen(s, "r")) != NULL) {
fseek(f, 0, SEEK_END);
size = ftell(f);
fclose(f);
}
return (size);
}
/*
* RGBAsm - FSTACK.C (FileStack routines)
*