/* * (C) 2013-2016 by Christian Hesse * * This software may be used and distributed according to the terms * of the GNU General Public License, incorporated herein by reference. */ #include #include #include "arch.h" /*** main ***/ int main(int argc, char ** argv) { /* just print the architecture */ puts(ARCH); return EXIT_SUCCESS; } // vim: set syntax=c: