summaryrefslogtreecommitdiff
path: root/tests/P_hello/bar.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/P_hello/bar.c')
-rw-r--r--tests/P_hello/bar.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/P_hello/bar.c b/tests/P_hello/bar.c
new file mode 100644
index 0000000..9cd2ef3
--- /dev/null
+++ b/tests/P_hello/bar.c
@@ -0,0 +1,7 @@
+int bar() {
+ int result = 0;
+ for (int i = 0; i<5566; ++i) {
+ result += 1;
+ }
+ return result;
+}