view runtime/integer.h @ 9:52d9948def24

Limit stack use in Int32 in prep for stack unwind changes
author Mike Pavone <pavone@retrodev.com>
date Sat, 16 May 2009 23:22:45 -0400
parents d61550e2c001
children 31f8182f3433
line wrap: on
line source

#ifndef _INTEGER_H_
#define _INTEGER_H_

#include "object.h"
#include "func.h"

OBegin
	int32_t num;
Object(Int32)

MethodDef(_PL_,Int32)
MethodDef(_MN_,Int32)

object * make_Int32(int32_t val);

#endif //_INTEGER_H_