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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
0ebbec42
Commit
0ebbec42
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
121bdab3
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 @
0ebbec42
...
...
@@ -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