summaryrefslogtreecommitdiff
path: root/examples/gfcc/compiler/abs.c
diff options
context:
space:
mode:
authoraarne <unknown>2004-09-26 15:44:08 +0000
committeraarne <unknown>2004-09-26 15:44:08 +0000
commit693cbcb2f387aa6b0c782e46cb14c0769be26c43 (patch)
tree2233151f495d9da9a44208d260d5a4fa0748e137 /examples/gfcc/compiler/abs.c
parente1617bbb8e7d7dfa8ba4ba50cf1c321610f57ace (diff)
almost the final version
Diffstat (limited to 'examples/gfcc/compiler/abs.c')
-rw-r--r--examples/gfcc/compiler/abs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gfcc/compiler/abs.c b/examples/gfcc/compiler/abs.c
index 90312a2de..947711c13 100644
--- a/examples/gfcc/compiler/abs.c
+++ b/examples/gfcc/compiler/abs.c
@@ -13,7 +13,7 @@ int abs (int x){
int main () {
int i ;
i = abs (16);
- printf (int,i) ;
+ printf ("%d",i) ;
return ;
} ;