for exit() and abort() */
| 312 | |
| 313 | /* for exit() and abort() */ |
| 314 | rt_weak void _sys_exit(int return_code) |
| 315 | { |
| 316 | __rt_libc_exit(return_code); |
| 317 | while (1); |
| 318 | } |
| 319 | |
| 320 | /** |
| 321 | * return current length of file. |
nothing calls this directly
no test coverage detected