]> git.ozlabs.org Git - ccan/blobdiff - ccan/talloc/_info
endian: change license to CC0.
[ccan] / ccan / talloc / _info
index 95c91536b3fafa98d9cac86917d248d7c5bbbbd7..0ae45e73d814d1aebadd4d884463a26125a3c7c9 100644 (file)
@@ -49,7 +49,8 @@
  *     }
  *
  *     // This function opens a writable pipe to the given command.
- *     struct command *open_output_cmd(const void *ctx, char *fmt, ...)
+ *     static struct command *open_output_cmd(const void *ctx,
+ *                                            const char *fmt, ...)
  *     {
  *             va_list ap;
  *             struct command *cmd = talloc(ctx, struct command);
@@ -89,7 +90,7 @@
  *             return 0;
  *     }
  *
- * Licence: GPL (2 or any later version)
+ * License: LGPL (v2.1 or any later version)
  */
 int main(int argc, char *argv[])
 {
@@ -97,9 +98,15 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
+               printf("ccan/compiler\n");
                printf("ccan/typesafe_cb\n");
                return 0;
        }
 
+       if (strcmp(argv[1], "testdepends") == 0) {
+               printf("ccan/failtest\n");
+               return 0;
+       }
+
        return 1;
 }