terminate, converting Unix-style exit code into VMS status code */
| 27 | |
| 28 | /* terminate, converting Unix-style exit code into VMS status code */ |
| 29 | ATTRNORETURN void |
| 30 | vms_exit(int status) |
| 31 | { |
| 32 | /* convert non-zero to failure, zero to success */ |
| 33 | exit(status ? (SS$_ABORT | STS$M_INHIB_MSG) : SS$_NORMAL); |
| 34 | /* NOT REACHED */ |
| 35 | } |
| 36 | |
| 37 | /* put the user into the debugger; used for abort() when in wizard mode */ |
| 38 | ATTRNORETURN void |
no outgoing calls
no test coverage detected