English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 源码/资料 >
数据库系统
> 查看源码
random.c
资源名称:
postgresql-6.5.2.tar.gz [点击查看]
上传用户:
blenddy
上传日期:
2007-01-07
资源大小:
6495k
文件大小:
0k
源码类别:
数据库系统
开发平台:
Unix_Linux
random.c:源码内容
/* $Id: random.c,v 1.6 1999/02/07 22:07:02 tgl Exp $ */
#include <stdlib.h>
#include <math.h> /* for pow() prototype */
#include <errno.h>
#include "config.h"
#include "rusagestub.h"
long
random()
{
return lrand48();
}