blob: 91154f83d8bd8bf15a57e908541eddd9d8f9982a [file] [log] [blame]
/* memset() of array with one byte overwrite */
#include <string.h>
#include <stdint.h>
int main()
{
int32_t buf[10];
memset(buf, 41, 'a');
return 0;
}