Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1#include <stdio.h> 2#include <foo.h> 3 4int main(int argc, char **argv) 5{ 6 if (foo() != 42) 7 return 1; 8 fprintf(stderr, "ok\n"); 9 return 0; 10}