mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-15 13:04:40 +00:00
20 lines
204 B
C
20 lines
204 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "libblock.h"
|
|
|
|
int block_close(block_FILE *file)
|
|
{
|
|
if (file == NULL)
|
|
return -1;
|
|
|
|
free(file);
|
|
|
|
return 0;
|
|
}
|