X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftap%2F_info;h=baea996a766e6d38e9128e413ec725943814bd3b;hp=979cb7233ea2d0d477c28e4326a10cb2ebe0c545;hb=b2e751d04e590c49de02ceb56a7cafe877762b0e;hpb=faace1758e31f87ee2032cc04c6bb41e3cf8f12e diff --git a/ccan/tap/_info b/ccan/tap/_info index 979cb723..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 @@ -50,8 +52,10 @@ 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; }