12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #include <stdio.h>
- #include <string.h>
- #include "config.h"
- int main(int argc, char *argv[])
- {
- if (argc != 2)
- return 1;
- if (strcmp(argv[1], "depends") == 0) {
- printf("ccan/typesafe_cb\n");
- printf("ccan/compiler\n");
- return 0;
- }
- return 1;
- }
|