mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
10 lines
116 B
C
10 lines
116 B
C
|
#include <stdio.h>
|
||
|
|
||
|
extern char _etext[];
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
printf ("%p: %d\n", _etext, _etext[0]);
|
||
|
return 0;
|
||
|
}
|