/*****************************************************************************
* 	Project 	: Network Based Message Queue System		    **
*	Course		: CIS 650 - Software Engineering		    **
*	Location 	: /research/paraducks3/courses/cis650/proj/rt	    **
*	File		: rtincl.h				            **	
*	Description 	: File containing include files			    **
*****************************************************************************/

#ifndef RTINCL_H
#define RTINCL_H


#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <errno.h>
#include <string.h>
#include <stdarg.h>
#include <sys/uio.h>

/* include files of the project */
#include <rtdefs.h>
#include <rtmsg.h>
#include <rtconn.h>
#include <rtlconn.h>
#include <rtdml.h>
#include <rtwl.h>
#include <rtcomm.h>
#include <rt.h>
#include <rtstat.h>
#include <rtlog.h>
#include <rtdecl.h>
#include <rtglobe.h>


#endif /* RTINCL_H */


