blob: 1a2c7ab5e25969bc47b8edfdbe00c042321cb0fe [file] [log] [blame]
// RUN: test.sh -e -t %t %s
// bcopy() with a too small source.
#include <strings.h>
int main()
{
char buf1[10], buf2[11];
bcopy(buf1, buf2, 11);
return 0;
}