blob: ce79c0fd46376c02a34c9f0de1591e38293fa9a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
*
* (c) 2005-2009 Laurent Vivier <Laurent@vivier.eu>
*
* This file has been copied from EMILE bootloader, http://emile.sf.net
*
*/
#include "libiso9660.h"
void iso9660_close(iso9660_FILE *file)
{
free(file->path);
free(file);
}
|