mirror of
https://github.com/vivier/EMILE.git
synced 2024-10-31 20:05:01 +00:00
9bd9755dbb
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
18 lines
239 B
C
18 lines
239 B
C
/*
|
|
*
|
|
* (c) 2004-2007 Laurent Vivier <Laurent@Vivier.EU>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include "libmap.h"
|
|
|
|
void map_close(map_t *map)
|
|
{
|
|
map->device->close((stream_FILE*)map->device);
|
|
free(map->device);
|
|
free(map);
|
|
}
|