X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftap%2F_info;h=2b116de953b279bd9cfc3c13658bd41df0b4de01;hb=60b3090a54a7c55e7425c8523dab05b790dd664d;hp=979cb7233ea2d0d477c28e4326a10cb2ebe0c545;hpb=faace1758e31f87ee2032cc04c6bb41e3cf8f12e;p=ccan diff --git a/ccan/tap/_info b/ccan/tap/_info index 979cb723..2b116de9 100644 --- a/ccan/tap/_info +++ b/ccan/tap/_info @@ -1,6 +1,6 @@ +#include "config.h" #include #include -#include "config.h" /** * tap - Test Anything Protocol @@ -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; }