historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/openbios/fs/iso9660/iso9660_closedir.c
2024-01-16 11:20:27 -06:00

19 lines
254 B
C

/*
*
* (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;
}