EMILE/libiso9660/iso9660_closedir.c

20 lines
205 B
C
Raw Normal View History

2005-11-12 19:12:13 +00:00
/*
*
* (c) 2005 Laurent Vivier <Laurent@Vivier.EU>
2005-11-12 19:12:13 +00:00
*
*/
#include <stdlib.h>
#include "libiso9660.h"
int iso9660_closedir(stream_DIR *dir)
2005-11-12 19:12:13 +00:00
{
if (dir == NULL)
return -1;
free(dir);
return 0;
}