// Modified by:
// Created: 17.07.02
// RCS-ID: $Id$
-// Copyright: (c) the wxWindows team
+// Copyright: (c) the wxWidgets team
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
SysBreakStr(pstr);
#endif
}
-#else // !MSW, !Mac
- // FIXME: why is wxFputs() not defined under Linux?
- fputs(out.mb_str(), stderr);
- fflush(stderr);
+#else
+ wxFputs( out , stderr ) ;
+ if ( out.Right(1) != wxT("\n") )
+ wxFputs( wxT("\n") , stderr ) ;
+ fflush( stderr ) ;
#endif // platform
}