
/*
 *  LISTS.H
 *
 *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
 */

#ifndef _LISTS_H
#define _LISTS_H

#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef EXEC_LISTS_H
#include <exec/lists.h>
#endif

extern void *GetHead();
extern void *GetTail();
extern void *GetSucc();
extern void *GetPred();

#endif

