scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 0f4df1ecbd2a1b0067ae779b28599668c7a27167
parent 7c25f92622ba26c65e60080291e06f8969afe8a4
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 23 Jan 2018 14:46:38 +0000

Add limits macros for TUINT and TINT

Diffstat:
Minc/scc.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/inc/scc.h b/inc/scc.h @@ -12,6 +12,8 @@ extern int debug; #define TINT long long #define TUINT unsigned long long +#define TUINT_MAX ULLONG_MAX +#define TINT_MAX LLONG_MAX #define TFLOAT double struct items {