Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
#include 
3
 
4
void
5
remque(struct qelem *e)
6
{
7
  if (!e)
8
    return;
9
  if (e->q_forw)
10
    e->q_forw->q_back = e->q_back;
11
  if (e->q_back)
12
    e->q_back->q_forw = e->q_forw;
13
}