Skip to content
Snippets Groups Projects
Commit 5683f47f authored by sof's avatar sof
Browse files

[project @ 1997-10-30 22:32:03 by sof]

Cosmetic fix to avoid cpp warnings under linux
parent 9ef6bbaf
No related merge requests found
......@@ -37,7 +37,12 @@ void *alloca();
#include "gmp-mparam.h"
#ifdef __STDC__
/*
Cosmetic, but when running mkdependC on this under linux-2.x,
we're warned about redefinition of signed (done in sys/cdefs.h).
To avoid this wibble, we've weakened the #if below.
*/
#if defined(__STDC__) || defined(__linux__)
void *malloc (size_t);
void *realloc (void *, size_t);
void free (void *);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment