shithub: femtolisp

ref: 2e8caea3fb2dc18b3a1e5f51c62ca49c841d850e
dir: /main_posix.c/

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

static const char 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);
}