mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 16:20:06 +00:00
(struct drand48_data): Leave X to user macros and use x for member
name.
This commit is contained in:
parent
65da62deeb
commit
22f1cb2ee1
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1991,92,93,94,95,96,97,98 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -304,10 +304,10 @@ extern void lcong48 __P ((unsigned short int __param[7]));
|
||||
/* Data structure for communication with thread safe versions. */
|
||||
struct drand48_data
|
||||
{
|
||||
unsigned short int X[3]; /* Current state. */
|
||||
unsigned short int x[3]; /* Current state. */
|
||||
unsigned short int a[3]; /* Factor in congruential formula. */
|
||||
unsigned short int c; /* Additive const. in congruential formula. */
|
||||
unsigned short int old_X[3]; /* Old state. */
|
||||
unsigned short int old_x[3]; /* Old state. */
|
||||
int init; /* Flag for initializing. */
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user