summaryrefslogtreecommitdiff
path: root/tools/gyp/test/rules/src/subdir4/program.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gyp/test/rules/src/subdir4/program.c')
-rw-r--r--tools/gyp/test/rules/src/subdir4/program.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/tools/gyp/test/rules/src/subdir4/program.c b/tools/gyp/test/rules/src/subdir4/program.c
deleted file mode 100644
index ad647f4eb9..0000000000
--- a/tools/gyp/test/rules/src/subdir4/program.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <stdio.h>
-
-// Use the assembly function in linux and mac where it is built.
-#if PLATFORM_LINUX || PLATFORM_MAC
-extern int asm_function(void);
-#else
-int asm_function() {
- return 41;
-}
-#endif
-
-int main(void)
-{
- fprintf(stdout, "Hello from program.c\n");
- fflush(stdout);
- fprintf(stdout, "Got %d.\n", asm_function());
- fflush(stdout);
- return 0;
-}