blob: b8c25119884ae77908607ce02688ec0347c1bb6f [file] [log] [blame]
/*
$License:
Copyright (C) 2011 InvenSense Corporation, All Rights Reserved.
$
*/
#ifndef STDINT_INVENSENSE_H
#define STDINT_INVENSENSE_H
#ifndef WIN32
#ifdef __KERNEL__
#include <linux/types.h>
#else
#include <stdint.h>
#endif
#else
#include <windows.h>
typedef signed char int8_t;
typedef short int16_t;
typedef long int32_t;
typedef long long int64_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned long uint32_t;
typedef unsigned long long uint64_t;
typedef int int_fast8_t;
typedef int int_fast16_t;
typedef long int_fast32_t;
typedef unsigned int uint_fast8_t;
typedef unsigned int uint_fast16_t;
typedef unsigned long uint_fast32_t;
#endif
#endif // STDINT_INVENSENSE_H