66 lines
3.2 KiB
C
66 lines
3.2 KiB
C
/*
|
|
* Copyright notice
|
|
* ================
|
|
* GNU General Public License http://www.gnu.org/licenses/gpl.html
|
|
* This C++ implementation of SFMT contains parts of the original C code
|
|
* which was published under the following BSD license, which is therefore
|
|
* in effect in addition to the GNU General Public License.
|
|
* Copyright (c) 2006, 2007 by Mutsuo Saito, Makoto Matsumoto and Hiroshima University.
|
|
* Copyright (c) 2008 by Agner Fog.
|
|
* Copyright (c) 2008-2013 Trinity Core
|
|
*
|
|
* BSD License:
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
* > Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* > Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
* > Neither the name of the Hiroshima University nor the names of its
|
|
* contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef RANDOMC_H
|
|
#define RANDOMC_H
|
|
|
|
// Define integer types with known size: int32_t, uint32_t, int64_t, uint64_t.
|
|
// If this doesn't work then insert compiler-specific definitions here:
|
|
#if defined(__GNUC__)
|
|
// Compilers supporting C99 or C++0x have inttypes.h defining these integer types
|
|
#include <inttypes.h>
|
|
#define INT64_SUPPORTED // Remove this if the compiler doesn't support 64-bit integers
|
|
#elif defined(_WIN16) || defined(__MSDOS__) || defined(_MSDOS)
|
|
// 16 bit systems use long int for 32 bit integer
|
|
typedef signed long int int32_t;
|
|
typedef unsigned long int uint32_t;
|
|
#elif defined(_MSC_VER)
|
|
// Microsoft have their own definition
|
|
typedef signed __int32 int32_t;
|
|
typedef unsigned __int32 uint32_t;
|
|
typedef signed __int64 int64_t;
|
|
typedef unsigned __int64 uint64_t;
|
|
#define INT64_SUPPORTED // Remove this if the compiler doesn't support 64-bit integers
|
|
#else
|
|
// This works with most compilers
|
|
typedef signed int int32_t;
|
|
typedef unsigned int uint32_t;
|
|
typedef long long int64_t;
|
|
typedef unsigned long long uint64_t;
|
|
#define INT64_SUPPORTED // Remove this if the compiler doesn't support 64-bit integers
|
|
#endif
|
|
|
|
#endif // RANDOMC_H
|