summaryrefslogtreecommitdiff
path: root/libexec/ld.so/test/ldt.c
blob: 74d9643e55be6579bb55372dee5f4a21bdb40a2a (plain)
1
2
3
4
5
6
7
8
9
10
/*	$OpenBSD: ldt.c,v 1.2 2001/01/28 19:34:29 niklas Exp $	*/

#include <stdio.h>
main()
{
	int ptr = (int)fprintf;

	printf("Hello world\n");
	printf("printf = 0x%08x\n", ptr);
}