summaryrefslogtreecommitdiff
path: root/Utilities/cmlibrhash/librhash/ustd.h
blob: 756ce0b8fe01ca18aafc9a4c0b25fc736a3a70dc (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* ustd.h common macros and includes */
#ifndef LIBRHASH_USTD_H
#define LIBRHASH_USTD_H

/* Include KWSys Large File Support configuration. */
#include <cmsys/Configure.h>

#if defined(_MSC_VER)
# pragma warning(push,1)
#endif

#include <cm3p/kwiml/int.h>

#ifndef KWIML_INT_HAVE_INT64_T
# define int64_t KWIML_INT_int64_t
#endif
#ifndef KWIML_INT_HAVE_INT32_T
# define int32_t KWIML_INT_int32_t
#endif
#ifndef KWIML_INT_HAVE_INT16_T
# define int16_t KWIML_INT_int16_t
#endif
#ifndef KWIML_INT_HAVE_INT8_T
# define int8_t KWIML_INT_int8_t
#endif
#ifndef KWIML_INT_HAVE_UINT64_T
# define uint64_t KWIML_INT_uint64_t
#endif
#ifndef KWIML_INT_HAVE_UINT32_T
# define uint32_t KWIML_INT_uint32_t
#endif
#ifndef KWIML_INT_HAVE_UINT16_T
# define uint16_t KWIML_INT_uint16_t
#endif
#ifndef KWIML_INT_HAVE_UINT8_T
# define uint8_t KWIML_INT_uint8_t
#endif

#include <stddef.h>

#if 0
#if _MSC_VER > 1000
# include <stddef.h> /* size_t for vc6.0 */

# if _MSC_VER >= 1600
/* Visual Studio >= 2010 has stdint.h */
#  include <stdint.h>
# else
  /* vc6.0 has bug with __int8, so using char instead */
  typedef signed char       int8_t;
  typedef signed __int16    int16_t;
  typedef signed __int32    int32_t;
  typedef signed __int64    int64_t;
  typedef unsigned char     uint8_t;
  typedef unsigned __int16  uint16_t;
  typedef unsigned __int32  uint32_t;
  typedef unsigned __int64  uint64_t;
# endif /* _MSC_VER >= 1600 */

/* disable warnings: The POSIX name for this item is deprecated. Use the ISO C++ conformant name. */
# pragma warning(disable : 4996)

#else /* _MSC_VER > 1000 */

# include <stdint.h>
# include <unistd.h>

#endif /* _MSC_VER > 1000 */
#endif

#endif /* LIBRHASH_USTD_H */