From 29e69705ac3d9916bcbf08c516939a018a6f6174 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Wed, 28 Nov 2007 10:56:41 +0000 Subject: [PATCH] add missing file [r18562] --- target_architecture.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 target_architecture.h diff --git a/target_architecture.h b/target_architecture.h new file mode 100644 index 0000000..13c9f2e --- /dev/null +++ b/target_architecture.h @@ -0,0 +1,21 @@ +#ifndef TARGET_ARCHITECTURE_H +#define TARGET_ARCHITECTURE_H + +#define HAS_SIGNED_CHAR +//#define HAS_UNSIGNED_CHAR + +#include + +#define TARGET_INT_MIN INT_MIN +#define TARGET_INT_MAX INT_MAX +#define TARGET_UINT_MAX UINT_MAX + +#define TARGET_LONG_MIN LONG_MIN +#define TARGET_LONG_MAX LONG_MAX +#define TARGET_ULONG_MAX ULONG_MAX + +#define TARGET_LONGLONG_MIN LLONG_MIN +#define TARGET_LONGLONG_MAX LLONG_MAX +#define TARGET_ULONGLONG_MAX ULLONG_MAX + +#endif -- 2.20.1