GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: lib/libcrypto/crypto/../../libssl/src/crypto/mem_clr.c Lines: 0 1 0.0 %
Date: 2016-12-06 Branches: 0 0 0.0 %

Line Branch Exec Source
1
/* $OpenBSD: mem_clr.c,v 1.4 2014/06/12 15:49:27 deraadt Exp $ */
2
3
/* Ted Unangst places this file in the public domain. */
4
#include <string.h>
5
#include <openssl/crypto.h>
6
7
void
8
OPENSSL_cleanse(void *ptr, size_t len)
9
{
10
	explicit_bzero(ptr, len);
11
}