summaryrefslogtreecommitdiff
path: root/audio/mxv/files/patch-ah
diff options
context:
space:
mode:
Diffstat (limited to 'audio/mxv/files/patch-ah')
-rw-r--r--audio/mxv/files/patch-ah16
1 files changed, 0 insertions, 16 deletions
diff --git a/audio/mxv/files/patch-ah b/audio/mxv/files/patch-ah
deleted file mode 100644
index 825e4cce3e5f..000000000000
--- a/audio/mxv/files/patch-ah
+++ /dev/null
@@ -1,16 +0,0 @@
-*** old/smartmem.C Thu May 25 00:39:35 1995
---- smartmem.C Mon Jul 12 15:28:20 1999
-***************
-*** 64,70 ****
---- 64,74 ----
- void
- SmartMemory::free(void* ptr, unsigned size) {
- if(ptr) {
-+ #ifdef __FreeBSD__
-+ ::free(ptr);
-+ #else
- ::cfree(ptr);
-+ #endif
- totalBytes_Allocated -= size;
- }
- }