summaryrefslogtreecommitdiff
path: root/stdint.h
blob: dd9c546dacd42d22a15e9bd952866919a4bee85f (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __STD_INT_H_
#define __STD_INT_H_

typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef signed long int int32_t;
typedef unsigned long int uint32_t;
typedef unsigned __int64 uint64_t;

#endif