1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/devel/libdlmalloc/files/patch-aa
Satoshi Asami 0e5ad9aa59 Doug Lea's malloc library.
Submitted by:	Ollivier Robert <Ollivier.Robert@keltia.frmug.fr.net>
1995-06-04 05:29:58 +00:00

53 lines
759 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

*** malloc-2.5.3b.c.orig Sun Mar 26 10:50:54 1995
--- malloc-2.5.3b.c Fri Apr 7 19:21:29 1995
***************
*** 271,276 ****
--- 271,278 ----
/* preliminaries */
+ #include <sys/param.h>
+
#ifndef __STD_C
#ifdef __STDC__
#define __STD_C 1
***************
*** 1365,1373 ****
}
-
/* Derivatives */
#if __STD_C
Void_t* valloc(size_t bytes)
#else
--- 1367,1375 ----
}
/* Derivatives */
+ #if 0
#if __STD_C
Void_t* valloc(size_t bytes)
#else
***************
*** 1394,1400 ****
while (sz-- > 0) *q++ = 0;
return p;
}
!
#if __STD_C
void cfree(Void_t *mem)
#else
--- 1396,1402 ----
while (sz-- > 0) *q++ = 0;
return p;
}
! #endif
#if __STD_C
void cfree(Void_t *mem)
#else