Quiet HP/UX warnings:
cc: "lhash.c", line 294: warning 714: Function "func" called with no prototype or definition in scope. cc: "lhash.c", line 401: warning 714: Function called with no prototype or definition in scope. cc: "lhash.c", line 422: warning 714: Function called with no prototype or definition in scope.
This commit is contained in:
@@ -83,8 +83,8 @@ typedef struct lhash_node_st
|
||||
typedef struct lhash_st
|
||||
{
|
||||
LHASH_NODE **b;
|
||||
int (*comp)();
|
||||
unsigned long (*hash)();
|
||||
int (*comp)(void *, void *);
|
||||
unsigned long (*hash)(void *);
|
||||
unsigned int num_nodes;
|
||||
unsigned int num_alloc_nodes;
|
||||
unsigned int p;
|
||||
|
||||
Reference in New Issue
Block a user