summaryrefslogtreecommitdiff
path: root/x86/trivial_64bit_program.c
diff options
context:
space:
mode:
Diffstat (limited to 'x86/trivial_64bit_program.c')
-rw-r--r--x86/trivial_64bit_program.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/x86/trivial_64bit_program.c b/x86/trivial_64bit_program.c
new file mode 100644
index 0000000..05c6a41
--- /dev/null
+++ b/x86/trivial_64bit_program.c
@@ -0,0 +1,18 @@
+/*
+ * Trivial program to check that we have a valid 64-bit build environment.
+ * Copyright (c) 2015 Andy Lutomirski
+ * GPL v2
+ */
+
+#ifndef __x86_64__
+# error wrong architecture
+#endif
+
+#include <stdio.h>
+
+int main()
+{
+ printf("\n");
+
+ return 0;
+}