1
0
Fork 0
qemu/roms/openbios/fs/ext2/ext2_close.c
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

18 lines
273 B
C

/*
*
* (c) 2008-2009 Laurent Vivier <Laurent@lvivier.info>
*
* This file has been copied from EMILE, http://emile.sf.net
*
*/
#include "libext2.h"
void ext2_close(ext2_FILE *file)
{
if (file == NULL)
return;
free(file->inode);
free(file->path);
free(file);
}