blob: b266a061e03135ae43af54762a339a0a78a8117a [file] [log] [blame]
/* Uninitialized static pointer. */
#include <string.h>
int main()
{
static char *ptr;
strcpy(ptr, "string");
return 0;
}