]> arthur.barton.de Git - netatalk.git/blob - etc/atalkd/list.h
Initial revision
[netatalk.git] / etc / atalkd / list.h
1 /*
2  * Copyright (c) 1990,1992 Regents of The University of Michigan.
3  * All Rights Reserved. See COPYRIGHT.
4  */
5
6 struct list {
7     void        *l_data;
8     struct list *l_next,
9                 *l_prev;
10 };