Files
l2/c_extern.sl
2026-01-08 15:28:10 +01:00

14 lines
241 B
Plaintext

import stdlib/io.sl
# C-style externs (auto ABI handling)
extern long labs(long n)
extern void exit(int status)
word main
# Test C-style extern with implicit ABI handling
-10 labs puti cr
# Test extern void
0 exit
end