diff options
Diffstat (limited to 'meson/test cases/common/149 dotinclude/dotproc.c')
-rw-r--r-- | meson/test cases/common/149 dotinclude/dotproc.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meson/test cases/common/149 dotinclude/dotproc.c b/meson/test cases/common/149 dotinclude/dotproc.c new file mode 100644 index 000000000..f48c330bd --- /dev/null +++ b/meson/test cases/common/149 dotinclude/dotproc.c @@ -0,0 +1,10 @@ +#include"stdio.h" + +#ifndef WRAPPER_INCLUDED +#error The wrapper stdio.h was not included. +#endif + +int main(void) { + printf("Eventually I got printed.\n"); + return 0; +} |