Files
retrobsd/src/libc/compat/rand.c
Serge Vakulenko 08edaaba8c Fix bug in hxtft driver: drawing rectangles.
Add a few gpanel examples.
2015-10-08 22:15:01 -07:00

21 lines
359 B
C

/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
static long randx = 1;
void
srand(x)
unsigned x;
{
randx = x;
}
int
rand()
{
randx = randx * 1103515245 + 12345;
return (randx >> 16) & 0x7fff;
}