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

20 lines
254 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, http://emile.sf.net
*
*/
#include "libiso9660.h"
int iso9660_closedir(iso9660_DIR *dir)
{
if (dir == NULL)
return -1;
free(dir);
return 0;
}