/*
* $Log$
+ * Revision 1.4 2004/07/18 22:12:53 bernie
+ * Fix warnings with GCC 3.3.2.
+ *
* Revision 1.3 2004/07/18 22:01:43 bernie
* REMHEAD(), REMTAIL(): Move to list.h as inline functions.
*
* \name Unlink a node from the head of the list \a l.
* \return Pointer to node, or NULL if the list was empty.
*/
+INLINE Node *REMHEAD(List *l);
INLINE Node *REMHEAD(List *l)
{
Node *n;
* \name Unlink a node from the tail of the list \a l.
* \return Pointer to node, or NULL if the list was empty.
*/
+INLINE Node *REMTAIL(List *l);
INLINE Node *REMTAIL(List *l)
{
Node *n;