X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fantithread%2F_info.c;fp=ccan%2Fantithread%2F_info.c;h=0000000000000000000000000000000000000000;hb=570c9c555f076e74f46141bb42b5d1d7ac89f632;hp=24b4e997e0045aa08adbf7fe8902abec8ea4ffde;hpb=8f61c0bccb152b2365baf70deac1e59264d7feb7;p=ccan diff --git a/ccan/antithread/_info.c b/ccan/antithread/_info.c deleted file mode 100644 index 24b4e997..00000000 --- a/ccan/antithread/_info.c +++ /dev/null @@ -1,26 +0,0 @@ -#include -#include -#include "config.h" - -/** - * antithread - Accelerated Native Technology Implementation of "threads" - * - * Threads suck. Antithreads try not to. FIXME. - * - * Licence: LGPL (2 or any later version) - */ -int main(int argc, char *argv[]) -{ - if (argc != 2) - return 1; - - if (strcmp(argv[1], "depends") == 0) { - printf("ccan/talloc\n"); - printf("ccan/alloc\n"); - printf("ccan/noerr\n"); - printf("ccan/read_write_all\n"); /* For tests */ - return 0; - } - - return 1; -}