summary refs log tree commit diff
path: root/tmain.c
blob: 44b6439071112e960f0a47a7971fd4e91bb6b1c6 (plain) (blame)
1
2
3
4
5
6
7
8
#include <stdio.h>
extern long f(void);

int main()
{
	printf("f() = %ld\n", f());
	return 0;
}