ref: 348489368dec95826593e6a8faecf09c0f421cfc
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;
}