summary refs log tree commit diff
path: root/tmain.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmain.c')
-rw-r--r--tmain.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tmain.c b/tmain.c
new file mode 100644
index 0000000..44b6439
--- /dev/null
+++ b/tmain.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+extern long f(void);
+
+int main()
+{
+	printf("f() = %ld\n", f());
+	return 0;
+}