Make include/malloc.h usable again.

Lot of third-party Linux code uses #include <malloc.h>, expecting to
find the malloc extensions there. Instead of trying to fight them,
accept that attempt to deprecate the header causes more troubles than
solves potential portability issues, and provide our jemalloc
extensions.

PR:	155429
Reviewed by:	imp, jhibbits, dab, hselasky, philip, emaste, jilles
Exp-run by:	antoine (PR 245366)
Sponsored by:	The FreeBSD Foundation
MFC after:	2 weeks
Differential revision:	https://reviews.freebsd.org/D24297
This commit is contained in:
Konstantin Belousov 2020-05-12 18:17:57 +00:00
parent 4f5f00d82d
commit bbbed78aaa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=360984

View File

@ -1,6 +1,6 @@
/* $FreeBSD$ */
#if __STDC__
#error "<malloc.h> has been replaced by <stdlib.h>"
#else
/*-
* This file is in the public domain.
* $FreeBSD$
*/
#include <stdlib.h>
#endif
#include <malloc_np.h>