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

long lrand48(void)
{
	return 0;
}

/*
XOPEN(4)
*/