shithub: riscv

ref: 8389465f94cce8a571910c8575d5a87c0b8dbd5c
dir: /sys/src/libc/port/rand.c/

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

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