/*

John Smith (john.smith@temple.edu)

CIS 307 - Lab 1

lab01.h - header file for main program
          contains job structure and function
	  definitions

*/

#ifndef _LAB01_H
#define _LAB01_H

#include <stdio.h>
#include "fifo/fifo.h"

typedef struct ITEM {
	int *job;
} Item;

#endif

