]> git.ozlabs.org Git - ccan/blobdiff - ccan/antithread/_info
ccan: Correct some poor conventions in _info includes
[ccan] / ccan / antithread / _info
index 7811c638297df948fb102c0a883be44df4cfed59..7bde2018a025514aafd90e84b371aa1db03fa075 100644 (file)
@@ -1,6 +1,6 @@
+#include "config.h"
 #include <stdio.h>
 #include <string.h>
-#include "config.h"
 
 /**
  * antithread - Accelerated Native Technology Implementation of "threads"
@@ -81,7 +81,7 @@
  *             return 0;
  *     }
  *
- * Licence: GPL (3 or any later version)
+ * License: GPL (v3 or any later version)
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  */
 int main(int argc, char *argv[])
@@ -90,10 +90,13 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
-               printf("ccan/talloc\n");
-               printf("ccan/alloc\n");
+               printf("ccan/antithread/alloc\n");
+               printf("ccan/err\n");
+               printf("ccan/list\n");
                printf("ccan/noerr\n");
                printf("ccan/read_write_all\n"); /* For tests */
+               printf("ccan/talloc\n");
+               printf("ccan/typesafe_cb\n");
                return 0;
        }