mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Enable it for powerpc and cross-powerpc Signed-off-by: Laurent Vivier <Laurent@vivier.Eu> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@626 f158a5a8-5612-0410-a976-696ce0be7e32
16 lines
241 B
C
16 lines
241 B
C
/*
|
|
*
|
|
* (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);
|
|
}
|