We have to wrap exit with our own because Clang has a hard time with function pointers to functions with special attributes (system exit being marked NORETURN)
| 223 | // We have to wrap exit with our own because Clang has a hard time with |
| 224 | // function pointers to functions with special attributes (system exit being marked NORETURN) |
| 225 | void myexit(int return_val) { |
| 226 | exit(return_val); |
| 227 | } |
| 228 | |
| 229 | void interactive(chaiscript::ChaiScript_Basic& chai) |
| 230 | { |
nothing calls this directly
no outgoing calls
no test coverage detected