#include "config.h" #include /** * tcon - routines for creating typesafe generic containers * * This code lets users create a structure with a typecanary; your API * is then a set of macros which check the type canary before calling * the generic routines. * * License: Public domain * * Author: Rusty Russell */ int main(int argc, char *argv[]) { /* Expect exactly one argument */ if (argc != 2) return 1; if (strcmp(argv[1], "depends") == 0) { return 0; } return 1; }