| 556 | } |
| 557 | |
| 558 | fortify_function(write) ssize_t write(int fd, FAR const void *buf, |
| 559 | size_t nbytes) |
| 560 | { |
| 561 | fortify_assert(nbytes <= fortify_size(buf, 0)); |
| 562 | return __real_write(fd, buf, nbytes); |
| 563 | } |
| 564 | #endif |
| 565 | |
| 566 | #undef EXTERN |
no outgoing calls
no test coverage detected