ref: ce3af9e03b554081f6689a541438f32cdd2c44c5
dir: /3rd/mp/test/main.c/
#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;
}