]> git.ozlabs.org Git - ccan/blobdiff - ccan/tap/_info
tap: assume variadic macros.
[ccan] / ccan / tap / _info
index 010f98967470528b4425a4b578bd9f8df9ef5340..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>
  *             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;
 }