Removed SupportWindows95 and platform_pc macros.

This commit is contained in:
Steven Fuller 2008-05-04 15:17:55 -07:00 committed by Patryk Obara
parent 361c131932
commit 9b449609fa
47 changed files with 66 additions and 347 deletions

View file

@ -73,7 +73,7 @@
#define FILEPERM "w"
#endif
#if SupportWindows95 && !defined(_MSC_VER) /* not required for MS C since MS C has CRT debugging available */
#if !defined(_MSC_VER) /* not required for MS C since MS C has CRT debugging available */
#define OVERRUN_SIZEMIN 2
#define OVERRUN_SIZEMAX 128
#define OVERRUN_SIZEFACTOR 2 /* this is a shift down */
@ -413,8 +413,6 @@ void DumpMallocInfo(int type)
}
else if (type==DUMPTOFILE)
{
#if SupportWindows95
FILE *fp;
if( (fp = fopen(MALLOCDUMPFILE,FILEPERM))== (FILE *)NULL)
@ -445,7 +443,6 @@ void DumpMallocInfo(int type)
fclose(fp);
}
#endif
}
@ -489,8 +486,6 @@ void DumpBoundsCheckInfo(int type)
}
else if (type==DUMPTOFILE)
{
#if SupportWindows95
FILE *fp;
if( (fp = fopen(MALLOCDUMPFILE,FILEPERM))== (FILE *)NULL)
@ -526,7 +521,6 @@ void DumpBoundsCheckInfo(int type)
fclose(fp);
}
#endif
}