13 lines
173 B
C
13 lines
173 B
C
|
#include <stdio.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
extern uintptr_t *get_bar (void);
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
if ((uintptr_t) get_bar () == 0xfffffff0ULL)
|
||
|
printf ("PASS\n");
|
||
|
return 0;
|
||
|
}
|