blob: 7af8f52324e4bfb78bdd0d415535d8a87360a913 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* -*- 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>
#else
# define __BEGIN_DECLS
# define __END_DECLS
#endif
#if defined(HAVE_INTTYPES_H)
# include <inttypes.h>
#else
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;
# else
# define NO_UINT64_T
# endif
#endif
#endif /* DEFS_H */
|