+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
# 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