From: Matthias Braun Date: Wed, 28 Nov 2007 10:56:41 +0000 (+0000) Subject: add missing file X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=29e69705ac3d9916bcbf08c516939a018a6f6174;p=cparser add missing file [r18562] --- 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