mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
40 lines
1004 B
C
40 lines
1004 B
C
/*
|
|
inttypes.h
|
|
|
|
Contributors:
|
|
Created by Marek Michalkiewicz <marekm@linux.org.pl>
|
|
|
|
THIS SOFTWARE IS NOT COPYRIGHTED
|
|
|
|
This source code is offered for use in the public domain. You may
|
|
use, modify or distribute it freely.
|
|
|
|
This code is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
|
|
DISCLAIMED. This includes but is not limited to warranties of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
|
|
#ifndef __INTTYPES_H_
|
|
#define __INTTYPES_H_
|
|
|
|
/* Use [u]intN_t if you need exactly N bits.
|
|
XXX - doesn't handle the -mint8 option. */
|
|
|
|
typedef signed char swift_int8_t;
|
|
typedef unsigned char swift_uint8_t;
|
|
|
|
typedef int swift_int16_t;
|
|
typedef unsigned int swift_uint16_t;
|
|
|
|
typedef long swift_int32_t;
|
|
typedef unsigned long swift_uint32_t;
|
|
|
|
typedef long long swift_int64_t;
|
|
typedef unsigned long long swift_uint64_t;
|
|
|
|
//typedef swift_int16_t intptr_t;
|
|
//typedef swift_uint16_t uintptr_t;
|
|
|
|
#endif
|