mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-11 06:28:09 +02:00
Add dummy list node type 'struct simple_node'
This commit is contained in:
parent
f37070bab6
commit
f5a22721c5
1 changed files with 5 additions and 0 deletions
|
|
@ -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.
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue