shithub: femtolisp

ref: 16807df966dc78dc9f11355f1cf18c88dc7c1253
dir: /main_posix.c/

View raw version
#include "llt.h"
#include "ieee754.h"

static const uint8_t boot[] =
#include "flisp.boot.h"
;

int
main(int argc, char **argv)
{
	union ieee754_float *f;
	F_PNAN = F_NNAN = strtof("+NaN", nil);
	F_PINF = F_NINF = strtof("+Inf", nil);
	f = (union ieee754_float *)&F_NNAN;
	f->ieee.negative = 1;
	f = (union ieee754_float *)&F_NINF;
	f->ieee.negative = 1;

	setlocale(LC_NUMERIC, "C");

	flmain(boot, sizeof(boot), argc, argv);
}