-/* 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
/* 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. */
};