]> git.ozlabs.org Git - ccan/blobdiff - ccan/opt/_info
base64: fix for unsigned chars (e.g. ARM).
[ccan] / ccan / opt / _info
index afd6e19b1551fa7522567ef4954eb272cde44498..103962069b6b4c813fe45fbe2a02006e72128a77 100644 (file)
@@ -1,6 +1,6 @@
+#include "config.h"
 #include <stdio.h>
 #include <string.h>
-#include "config.h"
 
 /**
  * opt - simple command line parsing
@@ -52,7 +52,7 @@
  *     return 0;
  * }
  *
- * License: GPL (v3 or any later version)
+ * License: GPL (v2 or any later version)
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  */
 int main(int argc, char *argv[])
@@ -61,8 +61,9 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
-               printf("ccan/typesafe_cb\n");
+               printf("ccan/cast\n");
                printf("ccan/compiler\n");
+               printf("ccan/typesafe_cb\n");
                return 0;
        }