blob: 50ad3275fb2038424368cb140369e47c2371d55a [file] [log] [blame]
/* Uninitialized allocated function pointer. */
#include <stdlib.h>
typedef int (*fptr)();
int main()
{
fptr *items;
items = malloc(100 * sizeof(fptr));
return items[0]();
}