aboutsummaryrefslogtreecommitdiffstats
path: root/src/crypto
diff options
context:
space:
mode:
authorHolger Lubitz <hal@duncan.ol.sub.de>2007-08-20 20:28:47 +0200
committerHolger Lubitz <hal@duncan.ol.sub.de>2007-08-20 20:28:47 +0200
commit68455adf37ed94363a1cb95c2d166529d6d9fba4 (patch)
treec1dbad7bc9f1a7f2dfc480efc3e22df573340b4d /src/crypto
parentdea89e8d62941a3b369c87b885243efaa71627ea (diff)
downloadipxe-68455adf37ed94363a1cb95c2d166529d6d9fba4.tar.gz
use malloc attribute
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/cryptoLayer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/cryptoLayer.h b/src/crypto/cryptoLayer.h
index 538b84f2..28ce97bc 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 );
}