summaryrefslogtreecommitdiff
path: root/src/user/app/testelf/main.c
blob: a3e54b8ba05cbf628008524d06675b9acbefd275 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

const char *str = "Hello!\n", *str2 = "World.\n";

int main(void) {
	printf("elftest's &main == 0x%x\n", &main);
	printf("%s%s", str, str2);
	return 0;
}