]> git.ozlabs.org Git - ccan/blob - ccan/antithread/_info.c
merge
[ccan] / ccan / antithread / _info.c
1 #include <stdio.h>
2 #include <string.h>
3 #include "config.h"
4
5 /**
6  * antithread - Accelerated Native Technology Implementation of "threads"
7  *
8  * Threads suck.  Antithreads try not to.  FIXME.
9  */
10 int main(int argc, char *argv[])
11 {
12         if (argc != 2)
13                 return 1;
14
15         if (strcmp(argv[1], "depends") == 0) {
16                 printf("ccan/talloc\n");
17                 printf("ccan/alloc\n");
18                 printf("ccan/noerr\n");
19                 return 0;
20         }
21
22         return 1;
23 }