//**************************************************************
//
//  CS 240B   : Winter 2003 Ohio University Travis Dillon
//  Project 5 : linked list
//  file      : prog5b.h
//  started   : 02-27-03
//
//**************************************************************

#ifndef PROG5B_H
#define PROG5B_H

using namespace std;

#include <iostream>
#include <iomanip>
#include <fstream>
#include <cstdlib>
#include <cassert>
#include <string>
#include <ctime>

typedef int T;

#endif  //PROG5B_H