summaryrefslogtreecommitdiff
path: root/Tests/Simple/simpleCLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Simple/simpleCLib.c')
-rw-r--r--Tests/Simple/simpleCLib.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/Simple/simpleCLib.c b/Tests/Simple/simpleCLib.c
new file mode 100644
index 000000000..88fc33efc
--- /dev/null
+++ b/Tests/Simple/simpleCLib.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+
+int FooBar()
+{
+ int class;
+ int private = 10;
+ for ( class = 0; class < private; class ++ )
+ {
+ printf("Count: %d/%d\n", class, private);
+ }
+ return 0;
+}