Fixed incorrect typedef definition in automatic headers.
authorJustin Seyster <jseyster@cs.sunysb.edu>
Wed, 20 Oct 2010 20:05:25 +0000 (16:05 -0400)
committerJustin Seyster <jseyster@cs.sunysb.edu>
Wed, 20 Oct 2010 20:05:25 +0000 (16:05 -0400)
src/aop-header.c

index 4b35df9a2f9bba0745dc1e83bdf89225f4c8f332..d5f7bd08c94625ffba7eeae64c8f9d77430c91b1 100644 (file)
@@ -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";