#include #include "fortify.h" char *__strncat_chk(char *restrict d, const char *restrict s, size_t n, size_t dn) { if(dn < n) __chk_fail(); return strncat(d, s, n); }