8914 loader: gcc 4.4.4 fails to allocate register for do_cpuid()
[unleashed.git] / lib / libcrypto / mem_clr.c
blob9ee5e65a2e6700f5f67b9e8971d1d8c28c6bd64b
1 /* $OpenBSD: mem_clr.c,v 1.4 2014/06/12 15:49:27 deraadt Exp $ */
3 /* Ted Unangst places this file in the public domain. */
4 #include <string.h>
5 #include <openssl/crypto.h>
7 void
8 OPENSSL_cleanse(void *ptr, size_t len)
10 explicit_bzero(ptr, len);