blob: 53fdd486ad488996e64e22dc5cfcb63174a1df1c [file] [log] [blame]
// Copyright 2006 Google Inc.
// All Rights Reserved.
// Author: <renn@google.com> (Marius Renn)
//
// This file defines some basic integer types, used extensively in Helium.
// It is meant to provide a common interface to PODs and their sizes.
//
#ifndef HELIUM_TYPES_H__
#define HELIUM_TYPES_H__
#include <stdint.h>
typedef uint8_t uint8;
typedef uint16_t uint16;
typedef uint32_t uint32;
typedef int8_t int8;
typedef int16_t int16;
typedef int32_t int32;
#endif // HELIUM_TYPES_H__