From 62d0d1937aa951bc716ad41126c3978894b405b0 Mon Sep 17 00:00:00 2001 From: Justin Seyster Date: Wed, 20 Oct 2010 16:05:25 -0400 Subject: [PATCH] Fixed incorrect typedef definition in automatic headers. --- src/aop-header.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; -- 2.34.1