/*
 *  (C) 2000 UNIVERSITY OF CHICAGO
 *      See COPYRIGHT in top-level directory.
 */




#ifndef _listops_h
#define _listops_h

/*
 * Support for singly-linked list of pointers (or ints)
 *
 */


typedef struct _List     *pList;
typedef struct _Listitem *pListitem;

#include "list.h"

#endif
