Allow FIPS malloc callback setting. Automatically set some callbacks
in OPENSSL_init().
diff --git a/fips/fips.h b/fips/fips.h
index 2c71041..921591b 100644
--- a/fips/fips.h
+++ b/fips/fips.h
@@ -122,6 +122,10 @@
 				int (*add_cb)(int *pointer, int amount,
 					int type, const char *file, int line));
 
+void FIPS_set_malloc_callbacks(
+		void *(*malloc_cb)(int num, const char *file, int line),
+		void (*free_cb)(void *));
+
 #define FIPS_ERROR_IGNORED(alg) OpenSSLDie(__FILE__, __LINE__, \
 		alg " previous FIPS forbidden algorithm error ignored");