summaryrefslogtreecommitdiff
path: root/src/mem3dc.c
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2008-05-04 15:17:55 -0700
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:37 +0200
commit9b449609fac7b23f2f9655ce2d766f1f56679ba4 (patch)
tree437781bff4f72b2d4bd3220f657a58ef516c18b5 /src/mem3dc.c
parent361c1319328308341d00a8c6dacc28e6096dd041 (diff)
Removed SupportWindows95 and platform_pc macros.
Diffstat (limited to 'src/mem3dc.c')
-rw-r--r--src/mem3dc.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/mem3dc.c b/src/mem3dc.c
index 0a3152b..895e699 100644
--- a/src/mem3dc.c
+++ b/src/mem3dc.c
@@ -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
}