mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-31 08:30:51 +00:00
15 lines
170 B
C
15 lines
170 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "libiso9660.h"
|
||
|
|
||
|
void iso9660_close(iso9660_FILE *file)
|
||
|
{
|
||
|
free(file);
|
||
|
}
|