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