#include <stdio.h>#pragma weak undef_dataextern int undef_data;int *ptr_to_data = &undef_data;intmain (void){if (ptr_to_data == NULL)printf ("PASSED\n");return 0;}
#include <stdio.h>#pragma weak undef_dataextern int undef_data;int *ptr_to_data = &undef_data;intmain (void){if (ptr_to_data == NULL)printf ("PASSED\n");return 0;}