summaryrefslogtreecommitdiffstats
path: root/qemu/roms/openbios/fs/iso9660/iso9660_closedir.c
blob: 706cc222f564c11ecfd4fa719a580a2abfac876c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 *
 * (c) 2005-2009 Laurent Vivier <Laurent@vivier.eu>
 *
 * This file has been copied from EMILE, http://emile.sf.net
 *
 */

#include "libiso9660.h"

int iso9660_closedir(iso9660_DIR *dir)
{
	if (dir == NULL)
		return -1;

	free(dir);

	return 0;
}