Archived
1
0
Fork 0

minor fixes in xalloc and rbtree.

rbtree didn't include string.h
xalloc uses strdup that is not needed.
This commit is contained in:
Henrik Hautakoski 2010-10-24 13:54:40 +02:00
parent f3158fb988
commit d420a86372
2 changed files with 9 additions and 5 deletions

View file

@ -10,7 +10,7 @@
* Based on the work of Julienne Walker's rbtree implementation
* http://www.eternallyconfuzzled.com/tuts/datastructures/jsw_tut_rbtree.aspx
*/
#include <string.h>
#include "xalloc.h"
#include "debug.h"
#include "rbtree.h"