diff src/define.h @ 289:cc8ee701f190

pst_block_offset elements are unsigned; consistent usage of pst_malloc and pst_realloc
author Carl Byington <carl@five-ten-sg.com>
date Fri, 27 May 2011 11:36:49 -0700
parents 67b24d6a45d6
children 7a91e30826d8
line wrap: on
line diff
--- a/src/define.h	Fri May 27 09:50:24 2011 -0700
+++ b/src/define.h	Fri May 27 11:36:49 2011 -0700
@@ -143,6 +143,7 @@
 void  pst_debug_hexdumper(FILE* out, const char* buf, size_t size, int cols, int delta);
 void  pst_debug_close(void);
 void* pst_malloc(size_t size);
+void *pst_realloc(void *ptr, size_t size);
 
 #define MESSAGEPRINT(...) pst_debug(__LINE__, __FILE__,  __VA_ARGS__)