Add dummy list node type 'struct simple_node'
authorIan Romanick <ian.d.romanick@intel.com>
Mon, 31 Aug 2009 21:49:33 +0000 (14:49 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Thu, 3 Sep 2009 18:22:46 +0000 (11:22 -0700)
src/mesa/main/simple_list.h

index 63475f6f740ba1d4d8f5853eb8d9ce491552d477..ff7f88823827f196ca3ce1a4f1cb0599c35d0320 100644 (file)
 #ifndef _SIMPLE_LIST_H
 #define _SIMPLE_LIST_H
 
+struct simple_node {
+   struct simple_node *next;
+   struct simple_node *prev;
+};
+
 /**
  * Remove an element from list.
  *