summaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index 91d61e1..f735f4e 100644
--- a/parse.c
+++ b/parse.c
@@ -1130,7 +1130,7 @@ static Status ctype_to_type(Allocator *a, CType *ctype, Type *type, Location whe
break;
case CTYPE_LONGLONG:
case CTYPE_UNSIGNED_LONGLONG:
-#if HAVE_LONGLONG
+#if LONGLONG_AVAILABLE
size = sizeof(longlong);
#else
err_print(where, "long long is not supported. Did you compile toc with a pre-C99 compiler?");