1 #ifndef EXEC_AVL_H
    2 #define EXEC_AVL_H
    3 
    4 /*
    5 	AVL-tree definitions (V45)
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef EXEC_TYPES_H
   11 # include <exec/types.h>
   12 #endif
   13 
   14 #pragma pack(2)
   15 
   16 struct AVLNode
   17 {
   18 	ULONG reserved[4];
   19 };
   20 
   21 typedef APTR AVLKey;
   22 typedef APTR AVLNODECOMP;
   23 typedef APTR AVLKEYCOMP;
   24 
   25 
   26 #pragma pack()
   27 
   28 #endif /* EXEC_AVL_H */