From: Holger Lubitz Date: Mon, 20 Aug 2007 18:28:47 +0000 (+0200) Subject: use malloc attribute X-Git-Tag: v0.9.3~101^2^2^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68455adf37ed94363a1cb95c2d166529d6d9fba4;p=thirdparty%2Fipxe.git use malloc attribute --- diff --git a/src/crypto/cryptoLayer.h b/src/crypto/cryptoLayer.h index 538b84f20..28ce97bc3 100644 --- a/src/crypto/cryptoLayer.h +++ b/src/crypto/cryptoLayer.h @@ -31,7 +31,7 @@ typedef void psPool_t; #define sslAssert( ... ) assert ( __VA_ARGS__ ) -static inline __attribute__ (( always_inline )) void * +static inline __attribute__ (( always_inline )) void * __malloc psMalloc ( psPool_t *pool __unused, size_t len ) { return malloc ( len ); }