Only redefine size_t and CHAR_BIT if they are not already defined.
This commit is contained in:
parent
ff1e35cb62
commit
fa128a27ab
2 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Apr 7 22:16:09 1992 Fred Fish (fnf@cygnus.com)
|
||||
|
||||
* mmalloc.h (size_t, CHAR_BIT): Only redefine if not already
|
||||
defined.
|
||||
|
||||
Mon Apr 6 20:49:33 1992 Fred Fish (fnf@cygnus.com)
|
||||
|
||||
* mmalloc.h: Remove include of <stdlib.h>. This also gets rid
|
||||
|
|
|
@ -36,12 +36,15 @@ Cambridge, MA 02139, USA.
|
|||
# define NULL (void *) 0
|
||||
# endif
|
||||
#else
|
||||
# undef size_t
|
||||
# define size_t unsigned int
|
||||
# define CHAR_BIT 8
|
||||
# define PTR char *
|
||||
# define CONST /* nothing */
|
||||
# define PARAMS(paramlist) ()
|
||||
# ifndef size_t
|
||||
# define size_t unsigned int
|
||||
# endif
|
||||
# ifndef CHAR_BIT
|
||||
# define CHAR_BIT 8
|
||||
# endif
|
||||
# ifndef NULL
|
||||
# define NULL 0
|
||||
# endif
|
||||
|
|
Loading…
Reference in a new issue