summaryrefslogtreecommitdiffstats
path: root/security/nss/lib/nss/utilwrap.c
diff options
context:
space:
mode:
Diffstat (limited to 'security/nss/lib/nss/utilwrap.c')
-rw-r--r--security/nss/lib/nss/utilwrap.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/security/nss/lib/nss/utilwrap.c b/security/nss/lib/nss/utilwrap.c
index 938d95c0f..48e147d88 100644
--- a/security/nss/lib/nss/utilwrap.c
+++ b/security/nss/lib/nss/utilwrap.c
@@ -75,6 +75,8 @@
#undef PORT_UCS2_ASCIIConversion
#undef PORT_UCS2_UTF8Conversion
#undef PORT_ZAlloc
+#undef PORT_ZAllocAligned
+#undef PORT_ZAllocAlignedOffset
#undef PORT_ZFree
#undef SEC_ASN1Decode
#undef SEC_ASN1DecodeInteger
@@ -144,6 +146,18 @@ PORT_ZAlloc(size_t bytes)
return PORT_ZAlloc_Util(bytes);
}
+void *
+PORT_ZAllocAligned(size_t bytes, size_t alignment, void **mem)
+{
+ return PORT_ZAllocAligned_Util(bytes, alignment, mem);
+}
+
+void *
+PORT_ZAllocAlignedOffset(size_t bytes, size_t alignment, size_t offset)
+{
+ return PORT_ZAllocAlignedOffset_Util(bytes, alignment, offset);
+}
+
void
PORT_Free(void *ptr)
{