mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00:00
16 lines
186 B
C
16 lines
186 B
C
#include <stdio.h>
|
|
|
|
#pragma weak undef_data
|
|
|
|
extern int undef_data;
|
|
int *ptr_to_data = &undef_data;
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
if (ptr_to_data == NULL)
|
|
printf ("PASSED\n");
|
|
|
|
return 0;
|
|
}
|