diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2002-02-25 12:49:36 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2002-02-25 12:49:36 +0000 |
commit | eeed907b4b1544c255fcdafa57bbad9c1546dbb8 (patch) | |
tree | 8dfa5549270bdb902c8601ac82b212dc8ea17532 /svtools/bmpmaker/g2g.cxx | |
parent | c0c254badb4e1c5ee5f18adf944c86e04a4e7251 (diff) |
#65293#: MSVC places functions from <cstdio>, <cstdlib>, etc. in global namespace
Diffstat (limited to 'svtools/bmpmaker/g2g.cxx')
-rw-r--r-- | svtools/bmpmaker/g2g.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svtools/bmpmaker/g2g.cxx b/svtools/bmpmaker/g2g.cxx index c921d1ae8f3e..c2dbb37efdf0 100644 --- a/svtools/bmpmaker/g2g.cxx +++ b/svtools/bmpmaker/g2g.cxx @@ -2,9 +2,9 @@ * * $RCSfile: g2g.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: hr $ $Date: 2002-02-21 14:45:08 $ + * last change: $Author: hr $ $Date: 2002-02-25 13:49:36 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,8 +59,8 @@ * ************************************************************************/ -#include <cstdio> -#include <csignal> +#include <stdio.h> +#include <signal.h> #include <ctype.h> #include <tools/fsys.hxx> #include <tools/stream.hxx> @@ -138,7 +138,7 @@ void G2GApp::Message( const String& rText, BYTE cExitCode ) ByteString aText( rText, RTL_TEXTENCODING_UTF8 ); aText.Append( "\r\n" ); - std::fprintf( stderr, aText.GetBuffer() ); + fprintf( stderr, aText.GetBuffer() ); } // ----------------------------------------------------------------------------- @@ -244,7 +244,7 @@ void G2GApp::Main( ) ShowUsage(); if( EXIT_NOERROR != cExitCode ) - std::raise( SIGABRT ); + raise( SIGABRT ); } // --------------- |