Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 617954
Collapse All | Expand All

(-)a/common/memops.c (-1 / +1 lines)
Lines 198-204 Link Here
198
 */
198
 */
199
static unsigned int seed = 22222;
199
static unsigned int seed = 22222;
200
200
201
inline unsigned int fast_rand() {
201
static inline unsigned int fast_rand() {
202
	seed = (seed * 96314165) + 907633515;
202
	seed = (seed * 96314165) + 907633515;
203
	return seed;
203
	return seed;
204
}
204
}

Return to bug 617954