Remove unused code

Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
Antonio Niño Díaz
2017-04-23 20:24:48 +02:00
parent 9b9b41e605
commit 646d71d927

View File

@@ -339,24 +339,3 @@ file_Length(FILE * f)
return (r); return (r);
} }
void
lib_ReadXLB0(FILE * f)
{
SLONG size;
size = file_Length(f) - 4;
while (size) {
char *name;
size -= readasciiz(&name, f);
readword(f);
size -= 2;
readword(f);
size -= 2;
size -= readlong(f);
size -= 4;
obj_ReadOpenFile(f, name);
free(name);
}
}