Files
l2/c_extern.sl
IgorCielniak bfbbebf034 general update
2025-12-20 23:20:53 +01:00

14 lines
236 B
Plaintext

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