diff options
author | Matt Turner <mattst88@gmail.com> | 2008-11-12 04:01:51 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2008-11-12 04:01:51 +0000 |
commit | 13434a06d5f7d34be5a78f4d8ab2db1a8b1d50e5 (patch) | |
tree | 220c2917d7f01f375b52d90c0ab57f71ac4cdc22 /sysinfo.c.example | |
parent | e618b16d4cc89e46ec4bac40af34a93790a17f8e (diff) |
Remove output_string function
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@10 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'sysinfo.c.example')
-rw-r--r-- | sysinfo.c.example | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/sysinfo.c.example b/sysinfo.c.example index db650f0..ece027d 100644 --- a/sysinfo.c.example +++ b/sysinfo.c.example @@ -1,10 +1,5 @@ -sprintf(buffer,"**System used for compilation:\n"); -output_string(buffer); -sprintf(buffer,"**Linux mimi 2.0.31 #5 Thu Oct 23 10:02:08 CDT 1997 i486\n"); -output_string(buffer); -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); -sprintf(buffer,"**Date of compilation: Thu Nov 20 10:04:43 CST 1997\n"); -output_string(buffer); +printf("**System used for compilation:\n"); +printf("**Linux mimi 2.0.31 #5 Thu Oct 23 10:02:08 CDT 1997 i486\n"); +printf("**C compiler: gcc version 2.7.2.3\n"); +printf("**libc: libc.so.5.4.38\n"); +printf("**Date of compilation: Thu Nov 20 10:04:43 CST 1997\n"); |