projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f37070b
)
Add dummy list node type 'struct simple_node'
author
Ian Romanick
<ian.d.romanick@intel.com>
Mon, 31 Aug 2009 21:49:33 +0000
(14:49 -0700)
committer
Ian Romanick
<ian.d.romanick@intel.com>
Thu, 3 Sep 2009 18:22:46 +0000
(11:22 -0700)
src/mesa/main/simple_list.h
patch
|
blob
|
history
diff --git
a/src/mesa/main/simple_list.h
b/src/mesa/main/simple_list.h
index 63475f6f740ba1d4d8f5853eb8d9ce491552d477..ff7f88823827f196ca3ce1a4f1cb0599c35d0320 100644
(file)
--- a/
src/mesa/main/simple_list.h
+++ b/
src/mesa/main/simple_list.h
@@
-37,6
+37,11
@@
#ifndef _SIMPLE_LIST_H
#define _SIMPLE_LIST_H
+struct simple_node {
+ struct simple_node *next;
+ struct simple_node *prev;
+};
+
/**
* Remove an element from list.
*