Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
a614bc9b
Commit
a614bc9b
authored
Nov 02, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
one more name clash in public includes fixed
http://lists.mysql.com/internals/18149
parent
5ff32da2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/my_list.h
include/my_list.h
+2
-2
No files found.
include/my_list.h
View file @
a614bc9b
...
...
@@ -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))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment