]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(struct drand48_data): Leave X to user macros and use x for member
authorUlrich Drepper <drepper@redhat.com>
Wed, 4 Mar 1998 17:20:42 +0000 (17:20 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 4 Mar 1998 17:20:42 +0000 (17:20 +0000)
name.

stdlib/stdlib.h

index bd6c9a301175f1bd1f7ef697667eb66e37bae254..99b5183495452fb7ade7e5c1de7496a52177d460 100644 (file)
@@ -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.  */
   };