mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-30 17:29:43 +00:00
9bd9755dbb
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
18 lines
212 B
C
18 lines
212 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <Laurent@Vivier.EU>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "libfloppy.h"
|
|
|
|
int floppy_close(floppy_device_t* device)
|
|
{
|
|
if (device == NULL)
|
|
return -1;
|
|
free(device);
|
|
return 0;
|
|
}
|