aboutsummaryrefslogtreecommitdiffstats
path: root/arch.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch.c')
-rw-r--r--arch.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/arch.c b/arch.c
new file mode 100644
index 0000000..9a5f690
--- /dev/null
+++ b/arch.c
@@ -0,0 +1,21 @@
+/*
+ * (C) 2013 by Christian Hesse <mail@eworm.de>
+ *
+ * This software may be used and distributed according to the terms
+ * of the GNU General Public License, incorporated herein by reference.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "config.h"
+
+/*** main ***/
+int main(int argc, char ** argv) {
+ /* just print the architecture */
+ puts(ARCH);
+
+ return EXIT_SUCCESS;
+}
+
+// vim: set syntax=c: