Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / test / cc-wrapper / cflags-main.c
blob9491232b538784895ceaa04a7818b2457070d8d5
1 #include <stdio.h>
2 #include <foo.h>
4 int main(int argc, char **argv)
6 if (foo() != 42)
7 return 1;
8 fprintf(stderr, "ok\n");
9 return 0;