diff options
author | Roland McGrath <roland@gnu.org> | 2003-05-28 21:01:52 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-05-28 21:01:52 +0000 |
commit | 862ef982729737b873b52039714ca7b4b43b4c72 (patch) | |
tree | d8126bdd139a48696a64975547fc6de5d9a36f84 /malloc/malloc.h | |
parent | fe2dcbcca121c0193cbaef35573a651f975cb156 (diff) | |
download | glibc-862ef982729737b873b52039714ca7b4b43b4c72.tar glibc-862ef982729737b873b52039714ca7b4b43b4c72.tar.gz glibc-862ef982729737b873b52039714ca7b4b43b4c72.tar.bz2 glibc-862ef982729737b873b52039714ca7b4b43b4c72.zip |
* malloc/malloc.h [! __GNUC__] (__const): Define if undefined.
Diffstat (limited to 'malloc/malloc.h')
-rw-r--r-- | malloc/malloc.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/malloc/malloc.h b/malloc/malloc.h index bbcdf22b23..868a2f6fc3 100644 --- a/malloc/malloc.h +++ b/malloc/malloc.h @@ -1,5 +1,5 @@ /* Prototypes and definition for malloc implementation. - Copyright (C) 1996, 1997, 1999, 2000, 2002 Free Software Foundation, Inc. + Copyright (C) 1996,1997,1999,2000,2002,2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -85,11 +85,19 @@ # define __MALLOC_P(args) args # define __MALLOC_PMT(args) args +# ifndef __const +# define __const const +# endif + # else /* Not ANSI C or C++. */ # define __MALLOC_P(args) () /* No prototypes. */ # define __MALLOC_PMT(args) () +# ifndef __const +# define __const +# endif + # endif /* ANSI C or C++. */ #endif /* GCC. */ |