historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/openbios/fs/iso9660/iso9660_close.c

16 lines
241 B
C
Raw Normal View History

2024-01-16 17:20:27 +00:00
/*
*
* (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);
}