drand48.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #include "config_unix.h"
  2. #include "config_win32.h"
  3. #include "drand48.h"
  4. #ifdef NEED_DRAND48
  5. double drand48(void)
  6. {
  7.         unsigned int x = (rand() << 16) | rand();
  8. return ((double)x / (double)0xffffffff);
  9. }
  10. #endif