blob: 1b9c2728ea362afa74c816305efce1616a8c23d4 [file] [log] [blame]
/* memmove() with invalid size */
#include <string.h>
int main()
{
char buf[1000];
memmove(buf, buf, 2000);
return 0;
}