Fix warnings in nedmalloc when compiling with GCC 4.4.0
commita21077e75f55b4696ada33d7d09f016f4ef16167
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>
Mon, 8 Jun 2009 14:46:49 +0000 (8 16:46 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 8 Jun 2009 16:43:37 +0000 (8 09:43 -0700)
tree66e864b7e2b6324c08c5e9786f4f59cfb1031599
parentf0ed8226c9c65f2a324610258418258229e77fbe
Fix warnings in nedmalloc when compiling with GCC 4.4.0

Nedmalloc's source code has a cute #define construct to avoid inserting
an if() statement, because that might interact badly with enclosing if()
statements.  However, GCC > 4 complains with a "warning: value computed
is not used".  So we cast the result to "void".

GCC also does not understand the Visual C++ specific pragmas, so we need
to disable them for MinGW.

We need to include malloc.h on Windows even if we happen to compile the
stuff as a MinGW program.  Otherwise the function declaration of alloca()
is missing.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
compat/nedmalloc/malloc.c.h
compat/nedmalloc/nedmalloc.c