about summary refs log tree commit diff
path: root/elf/link.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-09-10 19:43:01 +0000
committerUlrich Drepper <drepper@redhat.com>1999-09-10 19:43:01 +0000
commit6833780818c60b3f3a0a120f711369bb8158a0d5 (patch)
tree4fc7e61a6a38a01c9043fef489571045c814a743 /elf/link.h
parentec6275c0b7df29a34fd3beb7e29bc44fd63b8585 (diff)
downloadglibc-6833780818c60b3f3a0a120f711369bb8158a0d5.tar.gz
glibc-6833780818c60b3f3a0a120f711369bb8158a0d5.tar.xz
glibc-6833780818c60b3f3a0a120f711369bb8158a0d5.zip
Update.
1999-09-10  Ulrich Drepper  <drepper@cygnus.com>

	* 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  <schwab@suse.de>

	* elf/link.h: Fix comment.

1999-09-10  Ulrich Drepper  <drepper@cygnus.com>

	* math/bits/mathcalls.h: Add __isnan declaration [PR libc/1294].

	* math/math.h: Pretty print.
Diffstat (limited to 'elf/link.h')
-rw-r--r--elf/link.h3
1 files changed, 2 insertions, 1 deletions
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[];