summaryrefslogtreecommitdiffstats
path: root/tkhtml1/src/html.h
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-06-29 15:50:39 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-06-29 15:50:39 (GMT)
commita8b6443298f9cabe40718ae545994f915491cdcd (patch)
treee831e1106435ec4c2727fe29b5e52f4746a16d08 /tkhtml1/src/html.h
parentf1ece316b5bcd004ba28e7f6f15eb01744dce1af (diff)
downloadblt-a8b6443298f9cabe40718ae545994f915491cdcd.zip
blt-a8b6443298f9cabe40718ae545994f915491cdcd.tar.gz
blt-a8b6443298f9cabe40718ae545994f915491cdcd.tar.bz2
zero out all allocs
Diffstat (limited to 'tkhtml1/src/html.h')
-rw-r--r--tkhtml1/src/html.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tkhtml1/src/html.h b/tkhtml1/src/html.h
index b43da47..55f44cd 100644
--- a/tkhtml1/src/html.h
+++ b/tkhtml1/src/html.h
@@ -90,7 +90,8 @@
/*
** Macros to allocate and free memory.
*/
-#define HtmlAlloc(A) ((void*)Tcl_Alloc(A))
+/*#define HtmlAlloc(A) ((void*)Tcl_Alloc(A))*/
+void* HtmlAlloc(size_t);
#define HtmlFree(A) Tcl_Free((char*)(A))
#define HtmlRealloc(A,B) ((void*)Tcl_Realloc((A),(B)))