comparison src/stdlib/SDL_malloc.c @ 1456:84de7511f79f

Fixed a bunch of 64-bit compatibility problems
author Sam Lantinga <slouken@libsdl.org>
date Wed, 01 Mar 2006 09:43:47 +0000
parents bb6839704ed6
children 8dfa9a6d69a5
comparison
equal deleted inserted replaced
1455:f487bb150acc 1456:84de7511f79f
1645 }; 1645 };
1646 1646
1647 typedef struct malloc_chunk mchunk; 1647 typedef struct malloc_chunk mchunk;
1648 typedef struct malloc_chunk* mchunkptr; 1648 typedef struct malloc_chunk* mchunkptr;
1649 typedef struct malloc_chunk* sbinptr; /* The type of bins of chunks */ 1649 typedef struct malloc_chunk* sbinptr; /* The type of bins of chunks */
1650 typedef unsigned int bindex_t; /* Described below */ 1650 typedef size_t bindex_t; /* Described below */
1651 typedef unsigned int binmap_t; /* Described below */ 1651 typedef unsigned int binmap_t; /* Described below */
1652 typedef unsigned int flag_t; /* The type of various bit flag sets */ 1652 typedef unsigned int flag_t; /* The type of various bit flag sets */
1653 1653
1654 /* ------------------- Chunks sizes and alignments ----------------------- */ 1654 /* ------------------- Chunks sizes and alignments ----------------------- */
1655 1655