aboutsummaryrefslogtreecommitdiffstats
path: root/arch.c
blob: 1e644e950aa004b787c0ca3e96be4fb492e02abe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * (C) 2013-2014 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: