| 173 | } |
| 174 | |
| 175 | fortify_function(strncpy) FAR char *strncpy(FAR char *dest, |
| 176 | FAR const char *src, |
| 177 | size_t n) |
| 178 | { |
| 179 | fortify_assert(n <= fortify_size(dest, 0)); |
| 180 | return __real_strncpy(dest, src, n); |
| 181 | } |
| 182 | |
| 183 | fortify_function(memmove) FAR void *memmove(FAR void *dest, |
| 184 | FAR const void *src, |
no outgoing calls
no test coverage detected