/* CSE 333 Su12 Lecture 7 demo: include_solution/ll.h */
/* Gribble/Perkins */

#ifndef _LL_H_
#define _LL_H_ 1

typedef void *LinkedList;

// more definitions below

#endif  // _LL_H_