for exit() and abort() */
| 326 | |
| 327 | /* for exit() and abort() */ |
| 328 | __attribute__ ((noreturn)) void _exit (int status) |
| 329 | { |
| 330 | __rt_libc_exit(status); |
| 331 | while(1); |
| 332 | } |
| 333 | |
| 334 | /* |
| 335 | These functions are implemented and replaced by the 'common/time.c' file |
nothing calls this directly
no test coverage detected