aboutsummaryrefslogtreecommitdiff
path: root/stdlib/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/stdlib.h')
-rw-r--r--stdlib/stdlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h
index aa7ac20c15..eb9d25ec6f 100644
--- a/stdlib/stdlib.h
+++ b/stdlib/stdlib.h
@@ -416,10 +416,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. */
};