- typedefs changed

This commit is contained in:
Martin Willi
2005-11-24 11:30:19 +00:00
parent 95c61cb956
commit 5796aa164d
61 changed files with 303 additions and 242 deletions
+5 -5
View File
@@ -32,14 +32,14 @@
#ifdef LEAK_DETECTIVE
typedef union memory_hdr_t memory_hdr_t;
/**
* Header of each allocated memory area
*
* Used to detect memory leaks
*/
typedef union memory_hdr_u memory_hdr_t;
union memory_hdr_u {
union memory_hdr_t {
struct {
/**
* Filename withing memory was allocated
@@ -69,9 +69,9 @@ union memory_hdr_u {
*
* Contains private variables of allocator_t object.
*/
typedef struct private_allocator_s private_allocator_t;
typedef struct private_allocator_t private_allocator_t;
struct private_allocator_s
struct private_allocator_t
{
/**
* Public part of an allocator_t object.