From: Ian Romanick Date: Mon, 31 Aug 2009 21:49:33 +0000 (-0700) Subject: Add dummy list node type 'struct simple_node' X-Git-Tag: mesa-7.8~2082^2~192 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f5a22721c5731c7a4c20f86d9925d9e58324c7a5;p=platform%2Fupstream%2Fmesa.git Add dummy list node type 'struct simple_node' --- diff --git a/src/mesa/main/simple_list.h b/src/mesa/main/simple_list.h index 63475f6..ff7f888 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. *