mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-22 05:37:44 +01: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;
|
|
}
|