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