mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 06:08:49 +00:00
19 lines
285 B
C
19 lines
285 B
C
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
/*
|
|
*
|
|
* (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);
|
|
}
|