summaryrefslogtreecommitdiff
path: root/deps/gyp/test/generator-output/src/subdir3/prog3.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/generator-output/src/subdir3/prog3.c')
-rw-r--r--deps/gyp/test/generator-output/src/subdir3/prog3.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/deps/gyp/test/generator-output/src/subdir3/prog3.c b/deps/gyp/test/generator-output/src/subdir3/prog3.c
new file mode 100644
index 0000000000..c72233da19
--- /dev/null
+++ b/deps/gyp/test/generator-output/src/subdir3/prog3.c
@@ -0,0 +1,18 @@
+#include <stdio.h>
+
+#include "inc.h"
+#include "include1.h"
+#include "include2.h"
+#include "include3.h"
+#include "deeper.h"
+
+int main(void)
+{
+ printf("Hello from prog3.c\n");
+ printf("Hello from %s\n", INC_STRING);
+ printf("Hello from %s\n", INCLUDE1_STRING);
+ printf("Hello from %s\n", INCLUDE2_STRING);
+ printf("Hello from %s\n", INCLUDE3_STRING);
+ printf("Hello from %s\n", DEEPER_STRING);
+ return 0;
+}