]> git.ozlabs.org Git - ccan/blobdiff - ccan/tap/_info
tdb2: check PID if we are holding a lock.
[ccan] / ccan / tap / _info
index 979cb7233ea2d0d477c28e4326a10cb2ebe0c545..baea996a766e6d38e9128e413ec725943814bd3b 100644 (file)
@@ -18,6 +18,8 @@
  *
  * Based on the original libtap, Copyright (c) 2004 Nik Clayton.
  *
+ * License: BSD (2 clause)
+ *
  * Example:
  *     #include <string.h>
  *     #include <ccan/tap/tap.h>
@@ -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;
 }