summaryrefslogtreecommitdiff
path: root/utils/kl/foo.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/kl/foo.c')
-rw-r--r--utils/kl/foo.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/kl/foo.c b/utils/kl/foo.c
new file mode 100644
index 00000000..5c8fa36b
--- /dev/null
+++ b/utils/kl/foo.c
@@ -0,0 +1,15 @@
+int foo(void)
+{
+ return 100;
+}
+
+main()
+{
+ int x;
+
+ x = foo();
+}
+
+_main()
+{
+}