diff options
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/util.h b/src/common/util.h index f1c744b01b..8e91532ba0 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -33,6 +33,7 @@ #endif void *tor_malloc(size_t size); +void *tor_malloc_zero(size_t size); void *tor_realloc(void *ptr, size_t size); char *tor_strdup(const char *s); #define tor_free(p) do {if(p) {free(p); (p)=NULL;}} while(0) |