blob: 6c8cb3a7cd850a7cb837bf39749fb616c887f80d [file] [log] [blame]
/* For copyright information, see olden_v1.0/COPYRIGHT */
/* =============== NODE STRUCTURE =================== */
struct node {
int value;
struct node *left;
struct node *right;
};
typedef struct node HANDLE;
typedef struct future_cell_int{
HANDLE *value;
} future_cell_int;
extern void *malloc(unsigned);
#define NIL ((HANDLE *) 0)