blob: ecff144c5ca06b5de1860d1b500f5c23f6eb2140 [file] [log] [blame]
// RUN: test.sh -e -t %t %s
// Concatenate onto destination buffer that is too short.
#include <string.h>
int main()
{
char buf[1];
buf[0] = '\0';
strcat(buf, "s");
return 0;
}