Grid Community Toolkit
6.2.1567772254 (tag: v6.2.20190906)
gsi_openssh
source
modp_stdint.h
1
/* vi: set ft=c expandtab shiftwidth=4 tabstop=4: */
2
#ifndef MODP_STDINT_H_
3
#define MODP_STDINT_H_
4
5
#ifndef _WIN32
6
# include <stdint.h>
7
#else
8
/* win64 is llp64 so these are the same for 32/64bit
9
so no check for _WIN64 is required.
10
*/
11
typedef
unsigned
char
uint8_t;
12
typedef
signed
char
int8_t;
13
typedef
unsigned
short
uint16_t;
14
typedef
signed
short
int16_t;
15
typedef
unsigned
int
uint32_t;
16
typedef
signed
int
int32_t;
17
typedef
unsigned
__int64 uint64_t;
18
typedef
signed
__int64 int64_t;
19
#endif
20
21
#endif
/* MODP_STDINT_H_ */
Generated by
1.8.15