]> git.ozlabs.org Git - ccan/blobdiff - ccan/tap/_info
crypto/shachain/tools: update to new rbuf API.
[ccan] / ccan / tap / _info
index 010f98967470528b4425a4b578bd9f8df9ef5340..2b116de953b279bd9cfc3c13658bd41df0b4de01 100644 (file)
@@ -1,6 +1,6 @@
+#include "config.h"
 #include <stdio.h>
 #include <string.h>
-#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 <string.h>
  *     #include <ccan/tap/tap.h>
  *             ok1(strcmp(ab, a) > 0);
  *             return exit_status();
  *     }
+ *
+ * Maintainer: Rusty Russell <rusty@rustcorp.com.au>
  */
 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;
 }