diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-09 15:15:28 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-09 15:15:28 +0330 |
commit | 922b6c51fbcdabd3823e311c46fe55af193196e1 (patch) | |
tree | 976876bcbdc18308b8ca8672684e2c751a7e0350 /code/lib/memory.felan | |
parent | e711e6e55e9c83563db9bb04af7516632f27b91d (diff) |
fixing bug in anytype
Diffstat (limited to 'code/lib/memory.felan')
-rw-r--r-- | code/lib/memory.felan | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/code/lib/memory.felan b/code/lib/memory.felan index f1f9898..7715d0e 100644 --- a/code/lib/memory.felan +++ b/code/lib/memory.felan @@ -1,3 +1,5 @@ +@import("operator.felan"); + libc :: @c_library("/usr/lib/libc.so.6"); malloc :: @c_function(libc,"malloc",(i64)->(*void)); free :: @c_function(libc,"free",(*void)->void); |