mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-19 15:34:32 +08:00

A typo fixup. Change-Id: I2b08b8debe17cdcbd5512d16cee9272f07151cc9 Signed-off-by: Randy Li <randy.li@rock-chips.com>
14 lines
302 B
C
14 lines
302 B
C
#pragma once
|
|
|
|
/* a minimal set of C99 types for use with MSVC */
|
|
|
|
typedef signed char int8_t;
|
|
typedef short int int16_t;
|
|
typedef int int32_t;
|
|
typedef __int64 int64_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
typedef unsigned short int uint16_t;
|
|
typedef unsigned int uint32_t;
|
|
typedef unsigned __int64 uint64_t;
|