ref: 3cb3a733aa6d3c48f8695ed78a35af9710e1c406
dir: /3rd/mp/test/main.c/
#include "platform.h"
#include "mp.h"
#include "dat.h"
#include "fns.h"
#include "ieee754.h"
double D_PNAN, D_NNAN, D_PINF, D_NINF;
int anyfail = 0;
void
prng(uint8_t *p, int n)
{
	while(n-- > 0)
		*p++ = rand();
}
int
main()
{
	D_PNAN = D_NNAN = strtod("+NaN", nil);
	D_PINF = D_NINF = strtod("+Inf", nil);
	convtests();
	tests();
	return anyfail;
}