X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=crypto%2Flibeddsa%2Flib%2Fburnstack.h;fp=crypto%2Flibeddsa%2Flib%2Fburnstack.h;h=fbc63f754d950629206f54a9ea3379690d1694f5;hb=7bfbc0423ba40ea5156e06c8fb62bacd5ea93390;hp=0000000000000000000000000000000000000000;hpb=2ae349f5ed63b026cff763b35984dd36b330870a;p=zpackage diff --git a/crypto/libeddsa/lib/burnstack.h b/crypto/libeddsa/lib/burnstack.h new file mode 100644 index 0000000..fbc63f7 --- /dev/null +++ b/crypto/libeddsa/lib/burnstack.h @@ -0,0 +1,16 @@ +#ifndef BURNSTACK_H +#define BURNSTACK_H + +#include "compat.h" + +#ifdef USE_STACKCLEAN + +void burnstack(int len); + +#else + +static INLINE void burnstack(int len) { (void)len; } + +#endif + +#endif