1 /*
2  *      $Id: mach_dep.h 5 2002-04-24 22:14:27Z boote $
3  */
4 /************************************************************************
5 *									*
6 *			     Copyright (C)  2002			*
7 *				Internet2				*
8 *			     All Rights Reserved			*
9 *									*
10 ************************************************************************/
11 /*
12  *	File:		mach_dep.h
13  *
14  *	Author:		Jeff Boote
15  *			Internet2
16  *
17  *	Date:		Wed Apr 24 13:57:41 EDT 2002
18  *
19  *	Description:	This module attempts to isolate all machine
20  *			dependencies from platform to platform.
21  *
22  *		Based on code from UCAR DCS tools. Copyright information
23  *		from UCAR follows:
24  *
25  *		Copyright 1997 University Corporation for Atmospheric Research,
26  *		Scientific Computing Division.  All rights reserved.
27  *
28  *
29  *		Permission to use, copy, modify and distribute this software
30  *		and its	documentation for any academic, educational and
31  *		scientific research purpose is hereby granted without fee,
32  *		provided that the above copyright notice and this permission
33  *		notice appear in all copies of this software and its
34  *		documentation, and that the software is not sold and/or made
35  *		the subject of any commercial activity.  Parties interested
36  *		in commercial licensing should contact the copyright holder.
37  */
38 #ifndef	_i2_mach_dep_h_
39 #define	_i2_mach_dep_h_
40 
41 extern
42 char	**I2GetSysErrList(
43 	int	*count
44 	);
45 
46 #endif	/* _i2_mach_dep_h_ */
47