Didn't realize that this was *the* real_stderr declaration that the rest of the build used. Removed the additional DEBUG ifdef.

This commit is contained in:
cls%seawood.org 1998-10-22 06:55:10 +00:00
Родитель 382f88e891
Коммит 3d1afe55bf
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -56,13 +56,15 @@ void XP_Trace1 (const char* message, ...)
#endif /* DEBUG */
}
#if defined(XP_UNIX) && defined(DEBUG)
#if defined(XP_UNIX)
#if defined(__GLIBC__) && __GLIBC__ >= 2
FILE *real_stderr = 0;
#else
FILE *real_stderr = stderr;
#endif
#endif /* XP_UNIX */
#if defined(XP_UNIX) && defined(DEBUG)
void FE_Trace (const char* buffer)
{
#if defined(DEBUG_warren)