annotate paper/src/sample.c @ 35:7c5d27175aa4 default tip

fix
author ikkun
date Tue, 16 May 2017 16:19:47 +0900
parents 177ab3da697b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
177ab3da697b fix tex
ikkun
parents:
diff changeset
1 // Code Gear
177ab3da697b fix tex
ikkun
parents:
diff changeset
2 __code code1(struct Allocate* allocate) {
177ab3da697b fix tex
ikkun
parents:
diff changeset
3 allocate->size = sizeof(struct Data1);
177ab3da697b fix tex
ikkun
parents:
diff changeset
4
177ab3da697b fix tex
ikkun
parents:
diff changeset
5 goto allocator(allocate, Code2);
177ab3da697b fix tex
ikkun
parents:
diff changeset
6 }
177ab3da697b fix tex
ikkun
parents:
diff changeset
7
177ab3da697b fix tex
ikkun
parents:
diff changeset
8 // Code Gear
177ab3da697b fix tex
ikkun
parents:
diff changeset
9 __code code2(struct Data1* data1) {
177ab3da697b fix tex
ikkun
parents:
diff changeset
10 // processing
177ab3da697b fix tex
ikkun
parents:
diff changeset
11 }