mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
13 lines
194 B
C
13 lines
194 B
C
|
#include <stdio.h>
|
||
|
|
||
|
extern int *psym1, *psym2;
|
||
|
extern int strongsym;
|
||
|
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
printf ("value via psym1: %d, via psym2: %d, strong %d\n",
|
||
|
*psym1, *psym2, strongsym);
|
||
|
return 0;
|
||
|
}
|