mirror of
https://git.suckless.org/9base
synced 2025-08-18 22:13:48 -07:00
11 lines
116 B
C
11 lines
116 B
C
#include <lib9.h>
|
|
|
|
extern long p9lrand(void);
|
|
#define lrand p9lrand
|
|
|
|
int
|
|
p9rand(void)
|
|
{
|
|
return lrand() & 0x7fff;
|
|
}
|