diff options
author | serg@serg.mylan <> | 2004-11-02 22:46:55 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-11-02 22:46:55 +0100 |
commit | dd5486a5999d27c204e128aaafb3cb3f9076372b (patch) | |
tree | 9b564e3e1e83f84900b8303b7d04a6988a736a03 /include | |
parent | 8ba52759a39044e28e2329576cc64111a95a844f (diff) | |
download | mariadb-git-dd5486a5999d27c204e128aaafb3cb3f9076372b.tar.gz |
one more name clash in public includes fixed
http://lists.mysql.com/internals/18149
Diffstat (limited to 'include')
-rw-r--r-- | include/my_list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/my_list.h b/include/my_list.h index 789bbb50f97..f786621e311 100644 --- a/include/my_list.h +++ b/include/my_list.h @@ -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)) |