Strict mode is ceonsequntely paid attention no.

FossilOrigin-Name: 14cb543cc584b8895a1bbd4ab8ed4519030e8d27e4a17b13f4e0709992aa8cee
This commit is contained in:
7u83@mail.ru
2015-04-12 17:19:29 +00:00
parent f1f5131735
commit eee2d96b22
26 changed files with 207 additions and 136 deletions

View File

@ -40,15 +40,7 @@
* Defines the structure of an AVL Node.
*/
struct avlnode {
union {
void *data;
uint8_t ubyte;
uint16_t uword;
uint32_t udword;
int8_t byte;
int16_t word;
int32_t dword;
};
void *data;
struct avlnode *left;
struct avlnode *right;
int bal;