#include #include #include "config.h" /** * ccanmath - math helper routines * * These are some commonly used mathematics functions * to support standard math.h * * Licence: LGPL (2 or any later version) */ int main(int argc, char *argv[]) { if (argc != 2) return 1; if (strcmp(argv[1], "depends") == 0) { return 0; } return 1; }