/*
	Copyright 06/25/96 Sun Microsystems, Inc. All Rights Reserved
*/
/*  Common library definitions

    Copyright 1991 by TauMetric Corporation      ALL RIGHTS RESERVED

    @(#)common.h	1.1  06/25/96 09:37:05
*/

#ifndef _COMMON_H_
#define _COMMON_H_

typedef int _Ptrdiff_t;
typedef unsigned int _Size_t;

/* Standard null pointer */
#ifdef __cplusplus
  #define	_NULL_	0
#else
  #define	_NULL_	((void *)0)
#endif

/* "wide character" type */
typedef long _Wchar_t;

/* for var args */
typedef char *_Va_list;

/* max values */
#define _LONG_MAX_	0x7fffffffL

#endif /* _COMMON_H_ */
