Complete transition to fn. Introduce global/threadlocal

This commit is contained in:
Christoffer Lerno
2021-11-16 17:19:12 +01:00
committed by Christoffer Lerno
parent e2621617f1
commit b52b42d4da
331 changed files with 1279 additions and 1261 deletions

View File

@@ -10,15 +10,15 @@ struct Foo
int q2;
}
extern func int test(Foo, float);
extern func int testE(char,short,char,int,int,float);
extern fn int test(Foo, float);
extern fn int testE(char,short,char,int,int,float);
func void test3(Foo *x)
fn void test3(Foo *x)
{
x.q = 1;
}
func void test2(Foo y)
fn void test2(Foo y)
{
testE(y.p, y.q, y.r, y.x, y.y, 0.1);
test(y, 0.1);