summaryrefslogtreecommitdiff
path: root/examples/gfcc/abs.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gfcc/abs.c')
-rw-r--r--examples/gfcc/abs.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/gfcc/abs.c b/examples/gfcc/abs.c
deleted file mode 100644
index 947711c13..000000000
--- a/examples/gfcc/abs.c
+++ /dev/null
@@ -1,20 +0,0 @@
-int abs (int x){
- int y ;
- {
- if (x < 0){
- y = 0 - x ;
- }
- else {
- y = x ;
- }
- }
- return y ;
- } ;
-int main () {
- int i ;
- i = abs (16);
- printf ("%d",i) ;
- return ;
- } ;
-
-