Finish transition to the new #link syntax

This commit is contained in:
Nathan Braswell
2016-07-03 22:53:05 -07:00
parent 0f2ac1421a
commit 067c72f77c
3 changed files with 3 additions and 5 deletions

View File

@@ -1,5 +1,4 @@
/*#link("m")*/
#link(m)
#link("m")
fun fibanacci(num: int): int {
var l1 = 1

View File

@@ -3,8 +3,7 @@ import os:*
import mem:*
import util:*
/*#link("pthread")*/
#link(pthread)
#link("pthread")
ext fun pthread_attr_init(attr_ptr: *void): int
ext fun pthread_create(thread: *ulong, attr_ptr: *void, func: *void, param: *void): int
ext fun pthread_attr_destroy(attr_ptr: *void): int