mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
18 lines
228 B
C
18 lines
228 B
C
/*
|
|
*
|
|
* (c) 2004-2007 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include "libmap.h"
|
|
|
|
void map_close(map_t *map)
|
|
{
|
|
map->device->close(map->device);
|
|
free(map->device);
|
|
free(map);
|
|
}
|