summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2009-08-31 14:49:33 -0700
committerIan Romanick <ian.d.romanick@intel.com>2009-08-31 14:49:33 -0700
commit83846b45772dee846b9eb84d900a07b3b969ae19 (patch)
tree9b8ad7d6069fcbbbdd72607a9a01a8963487765d
parent5949a30a94478f16a9ebd8374f95fade329ad95a (diff)
Add dummy list node type 'struct simple_node'
-rw-r--r--src/mesa/main/simple_list.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/simple_list.h b/src/mesa/main/simple_list.h
index 63475f6f74..ff7f888238 100644
--- 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.
*