summaryrefslogtreecommitdiff
path: root/include/ogg
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2000-11-13 23:54:59 +0000
committerMonty <xiphmont@xiph.org>2000-11-13 23:54:59 +0000
commit424fd494ace30c9b6527d5cc23b869a86cfebd2f (patch)
treea3e1e9c4dc1e4321aef1f30c8237eca6964b18e1 /include/ogg
parent8621441b95800dfddd179846259c5c92073a3ebf (diff)
downloadogg-424fd494ace30c9b6527d5cc23b869a86cfebd2f.tar.gz
Also need defines for _ogg_free
git-svn-id: http://svn.xiph.org/trunk/ogg@1053 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'include/ogg')
-rw-r--r--include/ogg/os_types.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/ogg/os_types.h b/include/ogg/os_types.h
index 15455dc..ff476be 100644
--- a/include/ogg/os_types.h
+++ b/include/ogg/os_types.h
@@ -12,7 +12,7 @@
********************************************************************
function: #ifdef jail to whip a few platforms into the UNIX ideal.
- last mod: $Id: os_types.h,v 1.2 2000/11/05 23:50:21 xiphmont Exp $
+ last mod: $Id: os_types.h,v 1.3 2000/11/13 23:54:58 xiphmont Exp $
********************************************************************/
#ifndef _OS_TYPES_H
@@ -20,9 +20,10 @@
/* make it easy on the folks that want to compile the libs with a
different malloc than stdlib */
-#define _ogg_malloc malloc
-#define _ogg_calloc calloc
+#define _ogg_malloc malloc
+#define _ogg_calloc calloc
#define _ogg_realloc realloc
+#define _ogg_free free
#ifdef _WIN32
# ifndef __GNUC__