1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00
1997-05-07 13:26  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* Makerules (lib): Put back dependency on lib-noranlib.
	($(subdirs-stamps)): Remove dependency on stamp.* again.

1998-05-07  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/i386/fpu/bits/mathinline.h: Use long long int also for
	test in __pow2 implementation.

1998-05-07  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* malloc/malloc.c (top_check): Add void as parameter to silent gcc.
This commit is contained in:
Ulrich Drepper
1998-05-07 13:10:33 +00:00
parent 6600049466
commit ae9b308c6a
4 changed files with 22 additions and 4 deletions

View File

@@ -4246,8 +4246,13 @@ mem2chunk_check(mem) Void_t* mem;
/* Check for corruption of the top chunk, and try to recover if
necessary. */
static int
#if __STD_C
top_check(void)
#else
static int
top_check()
#endif
{
mchunkptr t = top(&main_arena);
char* brk, * new_brk;