Mercurial > repos > rhope
view runtime/plat_types.h @ 75:0083b2f7b3c7
Partially working implementation of List. Modified build scripts to allow use of other compilers. Fixed some bugs involving method implementations on different types returning different numbers of outputs. Added Fold to the 'builtins' in the comipler.
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Tue, 06 Jul 2010 07:52:59 -0400 |
parents | a24eb366195c |
children |
line wrap: on
line source
#ifndef _PLAT_TYPES_H_ #define _PLAT_TYPES_H_ #ifdef _WIN32 typedef char int8_t; typedef short int16_t; typedef int int32_t; typedef long long int64_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef unsigned long long uint64_t; typedef unsigned int uintptr_t; #else #include <stdint.h> #endif #endif //_PLAT_TYPES_H_