mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-23 16:29:39 +00:00
18 lines
227 B
C
18 lines
227 B
C
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include "partition.h"
|
|
#include "libemile.h"
|
|
|
|
void emile_map_close(emile_map_t *map)
|
|
{
|
|
close(map->fd);
|
|
free(map);
|
|
}
|