#include #include "config.h" /** * tevent - reduced version of the SAMBA tevent library * * Cut down and modified for CCAN as an example. * * License: GPL */ int main(int argc, char *argv[]) { /* Expect exactly one argument */ if (argc != 2) return 1; if (strcmp(argv[1], "depends") == 0) { printf("ccan/talloc\n"); return 0; } return 1; }