| 278 | |
| 279 | #if CONFIG_FORTIFY_SOURCE > 0 |
| 280 | fortify_function(fgets) FAR char *fgets(FAR char *s, int n, FAR FILE *stream) |
| 281 | { |
| 282 | fortify_assert((size_t)n <= fortify_size(s, 0)); |
| 283 | return __real_fgets(s, n, stream); |
| 284 | } |
| 285 | |
| 286 | fortify_function(fread) size_t fread(FAR void *ptr, size_t size, |
| 287 | size_t n_items, FAR FILE *stream) |
no outgoing calls
no test coverage detected