Darwin: Fix dlmalloc warnings due to sizeof(size_t)

This commit is contained in:
Zachary Waldowski
2013-11-30 02:55:48 -05:00
parent 4d60d9e1e3
commit 6a6247d179

View File

@@ -1661,7 +1661,7 @@ struct malloc_chunk {
typedef struct malloc_chunk mchunk;
typedef struct malloc_chunk* mchunkptr;
typedef struct malloc_chunk* sbinptr; /* The type of bins of chunks */
typedef unsigned int bindex_t; /* Described below */
typedef size_t bindex_t; /* Described below */
typedef unsigned int binmap_t; /* Described below */
typedef unsigned int flag_t; /* The type of various bit flag sets */