blob: b3ef05bf7624d7c970456d4aebde15105f4a2add [file] [log] [blame]
//===------------------- types.h - bitsized types -------------------------===//
//
// MVM
//
// 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