Mercurial > dropbear
view dbhelpers.c @ 1889:fc4c9ef61856
Split CPPFLAGS and CFLAGS more carefully
This has no change to the build, but makes it easier to try
other build tools that only want CPPFLAGS
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 22 Mar 2022 16:17:05 +0800 |
parents | e75dab5bec71 |
children |
line wrap: on
line source
#include "dbhelpers.h" #include "includes.h" /* Erase data */ void m_burn(void *data, unsigned int len) { #if defined(HAVE_MEMSET_S) memset_s(data, len, 0x0, len); #elif defined(HAVE_EXPLICIT_BZERO) explicit_bzero(data, len); #else /* This must be volatile to avoid compiler optimisation */ volatile void *p = data; memset((void*)p, 0x0, len); #endif }