From 13434a06d5f7d34be5a78f4d8ab2db1a8b1d50e5 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 12 Nov 2008 04:01:51 +0000 Subject: Remove output_string function git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@10 0d43b9a7-5ab2-4d7b-af9d-f64450cef757 --- sysinfo.c.template | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'sysinfo.c.template') diff --git a/sysinfo.c.template b/sysinfo.c.template index c1a986c..775b39c 100644 --- a/sysinfo.c.template +++ b/sysinfo.c.template @@ -1,10 +1,5 @@ -sprintf(buffer,"**System used for compilation:\n"); -output_string(buffer); -sprintf(buffer,"**%SYSTEM%\n"); -output_string(buffer); -sprintf(buffer,"**C compiler: %CCVERSION%\n"); -output_string(buffer); -sprintf(buffer,"**libc: %LIBCVERSION%\n"); -output_string(buffer); -sprintf(buffer,"**Date of compilation: %DATE%\n"); -output_string(buffer); +printf("**System used for compilation:\n"); +printf("**%SYSTEM%\n"); +printf("**C compiler: %CCVERSION%\n"); +printf("**libc: %LIBCVERSION%\n"); +printf("**Date of compilation: %DATE%\n"); -- cgit v1.2.3