blob: f42659f2f2490e58867ab7f3328d0c591aee5eb5 [file] [log] [blame]
/* strcat() to buffer of length 1 */
#include <string.h>
int main()
{
char buf[1];
buf[0] = '\0';
strcat(buf, "s");
return 0;
}