Skip to content

Commit

Permalink
fix: warning fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xtruan committed Aug 2, 2024
1 parent f602636 commit 1eae49b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/crypto/ed25519_donna/ed25519_donna_impl_base.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <assert.h>
#include "../options.h"
#include "ed25519_donna.h"
#include "../memzero.h"
#include "options.h"

/* sqrt(x) is such an integer y that 0 <= y <= p - 1, y % 2 = 0, and y^2 = x (mod p). */
/* d = -121665 / 121666 */
Expand Down
2 changes: 1 addition & 1 deletion lib/crypto/monero/base58.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote
// developers

#include "../options.h"
#include "options.h"

#if USE_MONERO

Expand Down
2 changes: 2 additions & 0 deletions lib/crypto/monero/serialize.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// Created by Dusan Klinec on 02/05/2018.
//

#include "options.h"

#if USE_MONERO

#include "serialize.h"
Expand Down
2 changes: 2 additions & 0 deletions lib/crypto/monero/xmr.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// Created by Dusan Klinec on 10/05/2018.
//

#include "options.h"

#if USE_MONERO

#include "xmr.h"
Expand Down

0 comments on commit 1eae49b

Please sign in to comment.