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