shithub: sl

ref: f880fd1247d1e17b0bba28d79df956b03af2911a
dir: /3rd/mp/test/main.c/

View raw version
#include "platform.h"
#include "mp.h"
#include "dat.h"
#include "fns.h"

int anyfail = 0;

void
prng(uint8_t *p, int n)
{
	while(n-- > 0)
		*p++ = rand();
}

int
main()
{
	convtests();
	tests();
	return anyfail;
}