diff options
author | Thorsten Horstmann <thorsten.horstmann@web.de> | 2015-02-24 20:43:01 +0800 |
---|---|---|
committer | Thorsten Horstmann <thorsten.horstmann@web.de> | 2015-02-24 20:43:01 +0800 |
commit | fdb7ffa864dea8e1c9efe3532db08b1ccad484dc (patch) | |
tree | 51ecc6a9bee2ce0e98ac90c7057d7ae21879afde /bignum.h | |
parent | 9abcc7b909b6ff0f173405e73dc7c0c3d093e44a (diff) |
DROPBEAR_ prefix for include guards to avoid collisions
Diffstat (limited to 'bignum.h')
-rw-r--r-- | bignum.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -22,8 +22,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef _BIGNUM_H_ -#define _BIGNUM_H_ +#ifndef DROPBEAR_BIGNUM_H_ +#define DROPBEAR_BIGNUM_H_ #include "includes.h" #include "dbutil.h" @@ -35,4 +35,4 @@ void bytes_to_mp(mp_int *mp, const unsigned char* bytes, unsigned int len); void hash_process_mp(const struct ltc_hash_descriptor *hash_desc, hash_state *hs, mp_int *mp); -#endif /* _BIGNUM_H_ */ +#endif /* DROPBEAR_BIGNUM_H_ */ |