]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
use malloc attribute
authorHolger Lubitz <hal@duncan.ol.sub.de>
Mon, 20 Aug 2007 18:28:47 +0000 (20:28 +0200)
committerHolger Lubitz <hal@duncan.ol.sub.de>
Mon, 20 Aug 2007 18:28:47 +0000 (20:28 +0200)
src/crypto/cryptoLayer.h

index 538b84f20c1eafa5100e980d17a1e5f635c81579..28ce97bc3d15e5ffbb12263b0c2226dc331865e0 100644 (file)
@@ -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 );
 }