diff options
Diffstat (limited to 'meson/test cases/common/230 external project/app.c')
-rw-r--r-- | meson/test cases/common/230 external project/app.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meson/test cases/common/230 external project/app.c b/meson/test cases/common/230 external project/app.c new file mode 100644 index 000000000..166f00737 --- /dev/null +++ b/meson/test cases/common/230 external project/app.c @@ -0,0 +1,7 @@ +#include <libfoo.h> + +int main(void) +{ + return call_foo() == 42 ? 0 : 1; +} + |