blob: 6700758f97b62808f774eebb337a5a101b594fa5 [file] [log] [blame]
//===------------------- types.h - bitsized types -------------------------===//
//
// VMKIT
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef TYPES_H
#define TYPES_H
#include <stdint.h>
typedef uint8_t uint8;
typedef int8_t sint8;
typedef uint16_t uint16;
typedef int16_t sint16;
typedef uint32_t uint32;
typedef int32_t sint32;
typedef uint64_t uint64;
typedef int64_t sint64;
#endif