* include/search.h: Reinstate node_t definition.

* include/sys/cdefs.h: Remove in favor of newlib version.
This commit is contained in:
Christopher Faylor
2007-06-17 00:31:27 +00:00
parent 438b07b09f
commit 4a2c88cdc7
3 changed files with 16 additions and 23 deletions

View File

@ -31,6 +31,14 @@ typedef enum
leaf
} VISIT;
#ifdef _SEARCH_PRIVATE
typedef struct node
{
char *key;
struct node *llink, *rlink;
} node_t;
#endif
struct hsearch_data
{
struct internal_head *htable;