blob: 2399833cd553d2d4f8a672384073b186930180c7 [file] [log] [blame]
/* memmove() with invalid source */
#include <string.h>
int main()
{
char buffer[200];
memmove(buffer, &buffer[200], 100);
return 0;
}