source: Sophya/trunk/SophyaLib/SysSpec/rand48.h@ 3935

Last change on this file since 3935 was 1781, checked in by aubourg, 24 years ago

for darwin

File size: 391 bytes
Line 
1#ifndef RAND48_H
2#define RAND48_H
3
4struct drand48_data {
5 unsigned short X[3]; /* 48 bit integer value */
6 unsigned short a[3]; /* mutiplier value */
7 unsigned short c; /* addend value */
8 unsigned short old_X[3]; /* previous value of Xi */
9 int init; /* initialize ? */
10};
11
12typedef unsigned long long u_int64_t;
13
14#endif
Note: See TracBrowser for help on using the repository browser.