Removed func and rewrote typedefs.

This commit is contained in:
Christoffer Lerno
2021-05-20 10:31:44 +02:00
committed by Christoffer Lerno
parent 90c988cc1f
commit 1f676c135c
38 changed files with 328 additions and 240 deletions

View File

@@ -1,7 +1,7 @@
typedef func int(int) as Func;
define Func = func int(int);
typedef func int(Foo*, int) as Func2;
define Func2 = func int(Foo*, int);
struct Foo
{