blob: 525770369c4e49965cd3927b1ce78aa6aa586dae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include "config.h"
#include <stdio.h>
#include <string.h>
/**
* iscsi - async library for iscsi functionality
*
* The iscsi module is a work in progress.
*
* It aims to become a full async library for iscsi functionality,
* including all features required to establish and maintain a iscsi
* session, as well as a low level scsi library to create scsi cdb's
* and parse/unmarshall data-in structures.
*
* License: GPL (v3 or any later version)
* Author: Ronnie Sahlberg <ronniesahlberg@gmail.com>
*/
int main(int argc, char *argv[])
{
if (argc != 2)
return 1;
if (strcmp(argv[1], "depends") == 0) {
printf("ccan/compiler\n");
return 0;
}
return 1;
}
|