aboutsummaryrefslogtreecommitdiff
path: root/Examples/pike/simple/example.c
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/pike/simple/example.c')
-rw-r--r--Examples/pike/simple/example.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/Examples/pike/simple/example.c b/Examples/pike/simple/example.c
deleted file mode 100644
index 1c2af789c..000000000
--- a/Examples/pike/simple/example.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* File : example.c */
-
-/* A global variable */
-double Foo = 3.0;
-
-/* Compute the greatest common divisor of positive integers */
-int gcd(int x, int y) {
- int g;
- g = y;
- while (x > 0) {
- g = x;
- x = y % x;
- y = g;
- }
- return g;
-}
-
-