summaryrefslogtreecommitdiff
path: root/src/stdlib/random.c
blob: e3c82a41bc552d757fd6bcc1d42db1d1ef674e9e (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdlib.h>

long random(void)
{
	return 0;
}

/*
XOPEN(400)
*/