mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
18 lines
213 B
C
18 lines
213 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "libscsi.h"
|
|
|
|
int scsi_close(scsi_device_t *device)
|
|
{
|
|
if (device == NULL)
|
|
return -1;
|
|
free(device);
|
|
return 0;
|
|
}
|