mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
18 lines
191 B
C
18 lines
191 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "libblock.h"
|
|
|
|
void block_close(stream_FILE *file)
|
|
{
|
|
if (file == NULL)
|
|
return;
|
|
|
|
free(file);
|
|
}
|