/*
 *  File:			standard.h
 *  Purpose:		Stuff I standardly use.
 *  Functions:
 *  Created:		25 Nov 1988
 *  Last Modified:	19 Oct 1990
 *  Comments:
 *  History:
 *		19 Oct 90/JVE	Added ifdef sun.
 */

/*
 *  NULL pointer to some type.
 */

# define	NULLP( typ )            ( (typ *) 0 )

# undef ERROR
# define	ERROR				( -1 )
# undef OK
# define	OK					0

# undef TRUE
# define	TRUE				1
# undef FALSE
# define	FALSE				0

# define	MAXLINE 			255

# ifdef sun

/*
 *	Delete file.
 */

# define	remove( x )			unlink( (x) )

# endif 
