1/*
2 * $Id: list.h,v 1.2 2001-06-25 20:13:45 rufustfirefly Exp $
3 *
4 * Copyright (c) 1990,1992 Regents of The University of Michigan.
5 * All Rights Reserved. See COPYRIGHT.
6 */
7
8struct list {
9    void	*l_data;
10    struct list	*l_next,
11		*l_prev;
12};
13