From: Justin Seyster Date: Wed, 20 Oct 2010 20:05:25 +0000 (-0400) Subject: Fixed incorrect typedef definition in automatic headers. X-Git-Tag: release-v1.0~29 X-Git-Url: https://git.fsl.cs.stonybrook.edu/?a=commitdiff_plain;h=62d0d1937aa951bc716ad41126c3978894b405b0;p=interaspect.git Fixed incorrect typedef definition in automatic headers. --- diff --git a/src/aop-header.c b/src/aop-header.c index 4b35df9..d5f7bd0 100644 --- a/src/aop-header.c +++ b/src/aop-header.c @@ -76,8 +76,8 @@ static const char *default_preamble = /* Some typedefs that InterAspect-generated headers use for parameters. */ static const char *header_typedefs = - "typedef int ALL_SIGNED_T;\n" - "typedef unsigned int ALL_UNSIGNED_T;\n" + "typedef int64_t ALL_SIGNED_T;\n" + "typedef uint_t ALL_UNSIGNED_T;\n" "typedef double ALL_FP_T;\n" "typedef void *ALL_POINTER_T;\n\n" "/* BEGIN PROTOTYPES */\n";