Changed initialization: many init functions are not needed any more since we now rely on the compiler initializing global and static variables to zero!

This commit is contained in:
goldsimon
2007-10-09 19:59:56 +00:00
parent 536f2e42d2
commit 199648ff37
23 changed files with 35 additions and 117 deletions

View File

@@ -53,7 +53,7 @@ struct nse
/** right child next level */
u8_t r_nl;
};
static u8_t node_stack_cnt = 0;
static u8_t node_stack_cnt;
static struct nse node_stack[NODE_STACK_SIZE];
/**