scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 9e5f19275bc9f7d8a2eec2ad0ef9d6abd56471cd
parent c72e4f86d583352e5ede355a2b1923a7df615669
Author: Quentin Rameau <quinq@fifth.space>
Date:   Wed, 11 May 2016 17:49:44 +0200

Fix external identifier size limit for c99

Diffstat:
Minc/sizes_c99.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inc/sizes_c99.h b/inc/sizes_c99.h @@ -37,7 +37,7 @@ * same number of characters as the corresponding universal character * name, if any) */ -#define EXTIDENTSIZ 63 +#define EXTIDENTSIZ 31 /* * 4095 external identifiers in one translation unit */