summaryrefslogtreecommitdiffstats
path: root/tkhtml1/src/htmllayout.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/htmllayout.h
parentf1ece316b5bcd004ba28e7f6f15eb01744dce1af (diff)
downloadblt-a8b6443298f9cabe40718ae545994f915491cdcd.zip
blt-a8b6443298f9cabe40718ae545994f915491cdcd.tar.gz
blt-a8b6443298f9cabe40718ae545994f915491cdcd.tar.bz2
zero out all allocs
Diffstat (limited to 'tkhtml1/src/htmllayout.h')
-rw-r--r--tkhtml1/src/htmllayout.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tkhtml1/src/htmllayout.h b/tkhtml1/src/htmllayout.h
index bf4ce59..0d5805b 100644
--- a/tkhtml1/src/htmllayout.h
+++ b/tkhtml1/src/htmllayout.h
@@ -538,7 +538,8 @@ extern int HtmlTPArray[2000];
#if !(defined(COVERAGE_TEST))
# define TestPoint(X)
#endif
-#define HtmlAlloc(A) ((void*)Tcl_Alloc(A))
+/*#define HtmlAlloc(A) ((void*)Tcl_Alloc(A))*/
+void* HtmlAlloc(size_t);
struct HtmlMargin {
int indent; /* Size of the current margin */
int bottom; /* Y value at which this margin expires */