summaryrefslogtreecommitdiff
path: root/examples/gfcc/compiler/abs.c
diff options
context:
space:
mode:
authoraarne <unknown>2004-09-23 14:41:42 +0000
committeraarne <unknown>2004-09-23 14:41:42 +0000
commit2c60a2d82a0d7b90924e7dbbcacf36afb8549d17 (patch)
tree0a04734e741c294cb9f58cfdcafa2ff2b55894dd /examples/gfcc/compiler/abs.c
parentd5b4230d6dbee8c03eedf8d181dfa2badf1a954b (diff)
Ints n
Diffstat (limited to 'examples/gfcc/compiler/abs.c')
-rw-r--r--examples/gfcc/compiler/abs.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/gfcc/compiler/abs.c b/examples/gfcc/compiler/abs.c
new file mode 100644
index 000000000..c93b703b6
--- /dev/null
+++ b/examples/gfcc/compiler/abs.c
@@ -0,0 +1,12 @@
+int abs (int x){
+ if (x < 0){
+ return 0 - x ;
+ }
+ else return x ;
+ } ;
+int main () {
+ int i ;
+ i = abs (16);
+ } ;
+
+