shithub: riscv

ref: 6eca75fafb0b125329592b5b2c1b0fcb52c0bd7f
dir: /sys/src/libc/port/rand.c/

View raw version
#include	<u.h>
#include	<libc.h>

int
rand(void)
{
	return lrand() & 0x7fff;
}