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