/*

John Smith (john.smith@temple.edu)

CIS 307 - Lab 1

fifo.h - header file for fifo

*/

#ifndef _FIFO_H
#define _FIFO_H

typedef void *Fifo;

void *get(Fifo q);

#endif
