From 984f4ad69f9b7bad5dc54472dd374fd7edc5a5a9 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Sat, 29 Apr 2017 00:30:38 +0200 Subject: This project has been renamed to `pacredir`. Please... ... get it from https://github.com/eworm-de/pacredir#pacredir or https://git.eworm.de/cgit.cgi/pacredir/about/ --- arch.h | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 arch.h (limited to 'arch.h') diff --git a/arch.h b/arch.h deleted file mode 100644 index 57bced2..0000000 --- a/arch.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * (C) 2013-2017 by Christian Hesse - * - * This software may be used and distributed according to the terms - * of the GNU General Public License, incorporated herein by reference. - */ - -#ifndef _ARCH_H -#define _ARCH_H - -/* the binary needs to know its own architecture */ -#if defined __x86_64__ -# define ARCH "x86_64" -#elif defined __i386__ -# define ARCH "i686" -#elif defined __ARM_ARCH_7__ -# define ARCH "armv7h" -#elif defined __ARM_ARCH_6__ -# if defined __VFP_FP__ -# define ARCH "armv6h" -# else -# define ARCH "arm" -# endif -#else -# error Unknown architecture! -#endif - -#endif /* _ARCH_H */ - -// vim: set syntax=c: -- cgit v1.2.3-54-g00ecf