For math stuff nothing of that is needed. Whole ma...
# kotlin-native
o
For math stuff nothing of that is needed. Whole math.h content is in platform.posix, so just
import platform.posix.*
and use whatever function you like. More general, try smth like
konanc foo.kt -p library -o foo
and then
konanc bar.kt -l foo
to use it.