/* Test whether a basic srand invocation works. */

#include <stdlib.h>

#include "../basic.h"

int main(void)
{
	srand(42);
	return 0;
}
