From: Ulrich Drepper Date: Wed, 4 Mar 1998 17:20:42 +0000 (+0000) Subject: (struct drand48_data): Leave X to user macros and use x for member X-Git-Tag: cvs/before-sparc-2_0_x-branch~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22f1cb2ee17398b8ad962c606abdd18a9b94525b;p=thirdparty%2Fglibc.git (struct drand48_data): Leave X to user macros and use x for member name. --- diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index bd6c9a30117..99b51834954 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -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. */ };