mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00: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;
|
|
}
|