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