From 6833780818c60b3f3a0a120f711369bb8158a0d5 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 10 Sep 1999 19:43:01 +0000 Subject: Update. 1999-09-10 Ulrich Drepper * wcsmbs/wchar.h (WCHAR_MIN, WCHAR_MAX): Use all-numeric values. * sysdeps/generic/stdint.h: Correct WCHAR_MIN, WCHAR_MAX, and WINT_MAX values. * wctype/wctype.h: Remove incorrect towlower/towupper optimizations. 1999-09-09 Andreas Schwab * elf/link.h: Fix comment. 1999-09-10 Ulrich Drepper * math/bits/mathcalls.h: Add __isnan declaration [PR libc/1294]. * math/math.h: Pretty print. --- elf/link.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'elf/link.h') diff --git a/elf/link.h b/elf/link.h index 9b6e9df7e6..e8203596ff 100644 --- a/elf/link.h +++ b/elf/link.h @@ -70,7 +70,8 @@ extern struct r_debug _r_debug; of whatever module refers to `_DYNAMIC'. So, to find its own `struct r_debug', a program could do: for (dyn = _DYNAMIC; dyn->d_tag != DT_NULL) - if (dyn->d_tag == DT_DEBUG) r_debug = (struct r_debug) dyn->d_un.d_ptr; + if (dyn->d_tag == DT_DEBUG) + r_debug = (struct r_debug *) dyn->d_un.d_ptr; */ extern ElfW(Dyn) _DYNAMIC[]; -- cgit v1.2.3