This website works better with JavaScript.
Home
Explore
Help
Sign In
brkho
/
mesa
Watch
1
Star
0
Fork
0
Code
Releases
562
Wiki
Activity
Browse Source
Add dummy list node type 'struct simple_node'
tags/mesa_7_6_rc1
Ian Romanick
16 years ago
parent
f37070bab6
commit
f5a22721c5
1 changed files
with
5 additions
and
0 deletions
Split View
Show Diff Stats
5
0
src/mesa/main/simple_list.h
+ 5
- 0
src/mesa/main/simple_list.h
View File
@@ -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.
*
Write
Preview
Loading…
Cancel
Save