/*
 *  Copyright 1992 Science Applications International Corporation.
 */

/*
 * NAME    
 *	proto.h
 *
 * SYNOPSIS
 *      Contains Proto macro for function prototypes
 *
 * DESCRIPTION
 *
 *
 * DIAGNOSTICS
 *
 *
 * FILES
 *
 *
 * SEE ALSO
 *
 *
 * AUTHOR
 *	B. MacRitchie, June 26, 1992
 *
 *
 * MODIFICATIONS
 *
 */

/*
 *	SccsId:  @(#)proto.h	16.1 8/3/93 SAIC
 */

#ifndef _PROTO_H_
#define _PROTO_H_


#ifndef Proto
#ifdef __STDC__
#define Proto(type, name, args)	type name args
#else
#define Proto(type, name, args)	type name ()
#endif
#endif

#ifndef P
#ifdef __STDC__
#define P(args)	args
#else
#define P(args)	()
#endif
#endif

#endif
