diff options
Diffstat (limited to 'sysinfo.c.template')
-rw-r--r-- | sysinfo.c.template | 15 |
1 files changed, 5 insertions, 10 deletions
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"); |