CMake/Tests/BuildDepends/Project/bar.c

9 lines
89 B
C
Raw Normal View History

#include "stdio.h"
const char* foo();
int main()
{
printf("%s", foo());
return 0;
}