summaryrefslogtreecommitdiff
path: root/sysinfoc.c.example
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-12 04:01:51 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-12 04:01:51 +0000
commit13434a06d5f7d34be5a78f4d8ab2db1a8b1d50e5 (patch)
tree220c2917d7f01f375b52d90c0ab57f71ac4cdc22 /sysinfoc.c.example
parente618b16d4cc89e46ec4bac40af34a93790a17f8e (diff)
Remove output_string function
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@10 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'sysinfoc.c.example')
-rw-r--r--sysinfoc.c.example6
1 files changed, 2 insertions, 4 deletions
diff --git a/sysinfoc.c.example b/sysinfoc.c.example
index 7da71ac..ba123a5 100644
--- a/sysinfoc.c.example
+++ b/sysinfoc.c.example
@@ -1,4 +1,2 @@
-sprintf(buffer,"C compiler : gcc version 2.7.2.3\n");
-output_string(buffer);
-sprintf(buffer,"libc : libc.so.5.4.38\n");
-output_string(buffer);
+printf("C compiler : gcc version 2.7.2.3\n");
+printf("libc : libc.so.5.4.38\n");