2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* system.h: Remove USE_INLINES.
	* chain.c: Remove USE_INLINES.
This commit is contained in:
Ralf Corsepius
2003-11-23 19:11:46 +00:00
parent 926e856a9a
commit 39e50b3f23
3 changed files with 5 additions and 23 deletions

View File

@@ -54,28 +54,6 @@ void _Chain_Initialize(
the_chain->last = current;
}
/*PAGE
*
* _Chain_Get_first_unprotected
*/
#ifndef USE_INLINES
STATIC INLINE Chain_Node *_Chain_Get_first_unprotected(
Chain_Control *the_chain
)
{
Chain_Node *return_node;
Chain_Node *new_first;
return_node = the_chain->first;
new_first = return_node->next;
the_chain->first = new_first;
new_first->previous = _Chain_Head( the_chain );
return return_node;
}
#endif /* USE_INLINES */
/*PAGE
*
* _Chain_Get