aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/157 dotinclude/dotproc.c
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/157 dotinclude/dotproc.c')
-rw-r--r--test cases/common/157 dotinclude/dotproc.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test cases/common/157 dotinclude/dotproc.c b/test cases/common/157 dotinclude/dotproc.c
new file mode 100644
index 0000000..5e65f7b
--- /dev/null
+++ b/test cases/common/157 dotinclude/dotproc.c
@@ -0,0 +1,10 @@
+#include"stdio.h"
+
+#ifndef WRAPPER_INCLUDED
+#error The wrapper stdio.h was not included.
+#endif
+
+int main(int argc, char **argv) {
+ printf("Eventually I got printed.\n");
+ return 0;
+}