diff options
author | Christian Hesse <mail@eworm.de> | 2017-05-13 22:07:02 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2017-05-13 22:08:04 +0200 |
commit | 38a079064afe1b2e55911e4c23ac8a76e2cf24be (patch) | |
tree | 05ca0588a2f97e5d948d497d41a2f49d0fda6477 /arch.c | |
parent | f43e14906743c2940487494ad3f9925408e78cba (diff) | |
download | pacredir-38a079064afe1b2e55911e4c23ac8a76e2cf24be.tar.gz pacredir-38a079064afe1b2e55911e4c23ac8a76e2cf24be.tar.zst |
use a smarter way to determine architecture
Diffstat (limited to 'arch.c')
-rw-r--r-- | arch.c | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -1,21 +0,0 @@ -/* - * (C) 2013-2017 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 "arch.h" - -/*** main ***/ -int main(int argc, char ** argv) { - /* just print the architecture */ - puts(ARCH); - - return EXIT_SUCCESS; -} - -// vim: set syntax=c: |