sapphire/core/flow.sp
2022-06-09 17:24:50 +02:00

10 lines
210 B
SourcePawn

let compmacro('ifsystem','linux') in {
let { posix } in @'core/linux';
}
let compmacro('ifsystem','darwin') in {
let { posix } in @'core/darwin';
}
let @exit (i32 code) in {
posix.sys_exit(code);
}