Add PLI_UINT64 to _pli_types.h.

This commit is contained in:
steve 2003-09-30 01:33:13 +00:00
parent 2f4ec5a473
commit f7b3c720af
2 changed files with 32 additions and 2 deletions

View File

@ -19,7 +19,33 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: _pli_types.h,v 1.2 2003/05/26 04:39:16 steve Exp $"
#ident "$Id: _pli_types.h.in,v 1.1 2003/09/30 01:33:13 steve Exp $"
#endif
# define SIZEOF_UNSIGNED_LONG_LONG 8
# define SIZEOF_UNSIGNED_LONG 8
# define SIZEOF_UNSIGNED 4
#if SIZEOF_UNSIGNED >= 8
typedef unsigned PLI_UINT64;
typedef int PLI_INT64;
# define TIME_FMT ""
#else
# if SIZEOF_UNSIGNED_LONG >= 8
typedef unsigned long PLI_UINT64;
typedef long PLI_INT64;
# define TIME_FMT "l"
# else
# if SIZEOF_UNSIGNED_LONG_LONG > SIZEOF_UNSIGNED_LONG
typedef unsigned long long PLI_UINT64;
typedef long long PLI_INT64;
# define TIME_FMT "ll"
# else
typedef unsigned long PLI_UINT64;
typedef long PLI_INT64;
# define TIME_FMT "l"
# endif
# endif
#endif
typedef signed int PLI_INT32;
@ -30,7 +56,10 @@ typedef signed char PLI_BYTE8;
typedef unsigned char PLI_UBYTE8;
/*
* $Log: _pli_types.h,v $
* $Log: _pli_types.h.in,v $
* Revision 1.1 2003/09/30 01:33:13 steve
* Add PLI_UINT64 to _pli_types.h.
*
* Revision 1.2 2003/05/26 04:39:16 steve
* Typo type name.
*

View File

@ -1,6 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(netlist.h)
AC_CONFIG_HEADER(config.h)
AC_CONFIG_HEADER(_pli_types.h)
dnl Checks for programs.
AC_PROG_CC