blob: 0b36223f352211241166fb5e919bfd4fd9629e94 [file] [log] [blame]
/* memset() with the size of the destination smaller than given */
#include <string.h>
int main()
{
char buf1[20];
memset(buf1, 0, 30);
return 0;
}