]> pd.if.org Git - zpackage/blob - crypto/libeddsa/lib/burnstack.h
add package signing code
[zpackage] / crypto / libeddsa / lib / burnstack.h
1 #ifndef BURNSTACK_H
2 #define BURNSTACK_H
3
4 #include "compat.h"
5
6 #ifdef USE_STACKCLEAN
7
8 void burnstack(int len);
9
10 #else
11
12 static INLINE void burnstack(int len) { (void)len; }
13
14 #endif
15
16 #endif