summaryrefslogtreecommitdiff
path: root/src/stdlib/random.c
blob: 4cf3491603764e1f830d60e3ee95e62258876664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if 0

#include <stdlib.h>

long random(void)
{
	return 0;
}

/*
XOPEN(400)
*/


#endif