blob: 4d367c22b3c788bc9f52f63d8425269174fbc696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// **********************************************************************
//
// Copyright (c) 2001
// MutableRealms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
#ifndef ICE_CONST_H
#define ICE_CONST_H
#if defined(_WIN32)
# define ICE_INT64_LITERAL(n) n##i64
#elif defined(__linux__) && defined(i386)
# define ICE_INT64_LITERAL(n) n##LL
#else
# error "Unsupported operating system or platform!"
#endif
#endif
|