2001-07-13 16:06:14 -04:00
|
|
|
/* -*- C -*-
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEFS_H
|
|
|
|
#define DEFS_H
|
|
|
|
|
|
|
|
#include "ruby.h"
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#if defined(HAVE_SYS_CDEFS_H)
|
|
|
|
# include <sys/cdefs.h>
|
2002-01-16 04:25:59 -05:00
|
|
|
#endif
|
|
|
|
#if !defined(__BEGIN_DECLS)
|
2001-07-13 16:06:14 -04:00
|
|
|
# define __BEGIN_DECLS
|
|
|
|
# define __END_DECLS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HAVE_INTTYPES_H)
|
|
|
|
# include <inttypes.h>
|
2003-06-01 11:27:09 -04:00
|
|
|
#elif !defined __CYGWIN__ || !defined __INTTYPES_DEFINED__
|
2001-07-13 16:06:14 -04:00
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
typedef unsigned int uint32_t;
|
|
|
|
# if SIZEOF_LONG == 8
|
|
|
|
typedef unsigned long uint64_t;
|
|
|
|
# elif defined(__GNUC__)
|
|
|
|
typedef unsigned long long uint64_t;
|
|
|
|
# elif defined(_MSC_VER)
|
|
|
|
typedef unsigned _int64 uint64_t;
|
2002-06-10 21:27:48 -04:00
|
|
|
# elif defined(__BORLANDC__)
|
|
|
|
typedef unsigned __int64 uint64_t;
|
2001-07-13 16:06:14 -04:00
|
|
|
# else
|
2001-08-14 13:04:00 -04:00
|
|
|
# define NO_UINT64_T
|
2001-07-13 16:06:14 -04:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* DEFS_H */
|