mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
one more name clash in public includes fixed
http://lists.mysql.com/internals/18149
This commit is contained in:
parent
5ff32da265
commit
a614bc9b59
1 changed files with 2 additions and 2 deletions
|
@ -33,8 +33,8 @@ extern LIST *list_delete(LIST *root,LIST *element);
|
|||
extern LIST *list_cons(void *data,LIST *root);
|
||||
extern LIST *list_reverse(LIST *root);
|
||||
extern void list_free(LIST *root,unsigned int free_data);
|
||||
extern unsigned int list_length(LIST *list);
|
||||
extern int list_walk(LIST *list,list_walk_action action,gptr argument);
|
||||
extern unsigned int list_length(LIST *);
|
||||
extern int list_walk(LIST *,list_walk_action action,gptr argument);
|
||||
|
||||
#define rest(a) ((a)->next)
|
||||
#define list_push(a,b) (a)=list_cons((b),(a))
|
||||
|
|
Loading…
Reference in a new issue