summaryrefslogtreecommitdiff
path: root/deps/gyp/test/configurations/x64/configurations.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/configurations/x64/configurations.c')
-rw-r--r--deps/gyp/test/configurations/x64/configurations.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/deps/gyp/test/configurations/x64/configurations.c b/deps/gyp/test/configurations/x64/configurations.c
deleted file mode 100644
index 37018438fc..0000000000
--- a/deps/gyp/test/configurations/x64/configurations.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdio.h>
-
-int main(void) {
- if (sizeof(void*) == 4) {
- printf("Running Win32\n");
- } else if (sizeof(void*) == 8) {
- printf("Running x64\n");
- } else {
- printf("Unexpected platform\n");
- }
- return 0;
-}