7 lines
154 B
C
7 lines
154 B
C
|
#include <string.h>
|
||
|
#include "fortify.h"
|
||
|
|
||
|
char *__strcat_chk(char *restrict dest, const char *restrict src, size_t destlen)
|
||
|
{
|
||
|
return strcat(dest, src);
|
||
|
}
|