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