/*
 * Copyright (c) 1992-1996 Michael A. Cooper.
 * This software may be freely used and distributed provided it is not sold 
 * for profit or used for commercial gain and the author is credited 
 * appropriately.
 */

/*
 * $Id: os.h,v 1.1.1.2 1998/02/26 01:31:18 nathanw Exp $
 */

#ifndef __sysinfo_system__
#define __sysinfo_system__

/*
 * System dependent information
 */

#if defined(sun)
#	if OSMVER == 5 || defined(__svr4__)
#		include "os-sunos5.h"
#	else
#		include "os-sunos4.h"
#	endif
#endif /* sun */

#if defined(_AIX)
#	include "os-aix.h"
#endif /* _AIX */

#if (defined(hpux) || defined(__hpux)) && !defined(__convex__)
#	include "os-hpux.h"
#endif /* hpux */

#if defined(__convex__) || defined(__convex_spp)
#	include "os-sppux.h"
#endif /* __convex__ */

#if defined(sgi)
#      	include "os-irix.h"
#endif

/*
 * Everything depends on HAVE_KVM
 */
#if	defined(NEED_KVM) && !defined(HAVE_KVM)
#define HAVE_KVM
#endif

#endif /* __sysinfo_system__ */
