X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftap%2F_info;h=baea996a766e6d38e9128e413ec725943814bd3b;hp=010f98967470528b4425a4b578bd9f8df9ef5340;hb=b2e751d04e590c49de02ceb56a7cafe877762b0e;hpb=570c9c555f076e74f46141bb42b5d1d7ac89f632;ds=sidebyside diff --git a/ccan/tap/_info b/ccan/tap/_info index 010f9896..baea996a 100644 --- a/ccan/tap/_info +++ b/ccan/tap/_info @@ -18,6 +18,8 @@ * * Based on the original libtap, Copyright (c) 2004 Nik Clayton. * + * License: BSD (2 clause) + * * Example: * #include * #include @@ -42,14 +44,18 @@ * ok1(strcmp(ab, a) > 0); * return exit_status(); * } + * + * Maintainer: Rusty Russell */ int main(int argc, char *argv[]) { if (argc != 2) return 1; - if (strcmp(argv[1], "depends") == 0) + if (strcmp(argv[1], "depends") == 0) { + printf("ccan/compiler\n"); return 0; + } return 1; }