srandom.c
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /* $Id: srandom.c,v 1.6 1999/02/07 22:07:02 tgl Exp $ */
  2. #include <stdlib.h>
  3. #include <math.h> /* for pow() prototype */
  4. #include <errno.h>
  5. #include "config.h"
  6. #include "rusagestub.h"
  7. void
  8. srandom(unsigned int seed)
  9. {
  10. srand48((long int) seed);
  11. }