From cc7d494226f41d76208bd2a0613a26435247cc87 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Sun, 1 Sep 2019 15:21:25 -0400 Subject: improved the way identifiers worked (now they use a single block array) --- out.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'out.c') diff --git a/out.c b/out.c index d3c1aa0..d363960 100644 --- a/out.c +++ b/out.c @@ -1,10 +1,10 @@ #include "out.h" /* toc */ -void foo(float a[10], int64_t (*out__)[3]) { +void foo(void) { } void main__(void) { - void (*asdkofhj)(int64_t (*out__)[3]) = NULL; + foo(); } int main(void) { -- cgit v1.2.3