blob: 754a95f677e2ec9ba40c59865c0b5b342267d9ac (
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
// Mutable Realms, 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
|