File tree 4 files changed +3
-20
lines changed
4 files changed +3
-20
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ noinst_HEADERS += src/assumptions.h
47
47
noinst_HEADERS += src/checkmem.h
48
48
noinst_HEADERS += src/testutil.h
49
49
noinst_HEADERS += src/util.h
50
- noinst_HEADERS += src/util_local_visibility.h
51
50
noinst_HEADERS += src/int128.h
52
51
noinst_HEADERS += src/int128_impl.h
53
52
noinst_HEADERS += src/int128_native.h
Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ extern "C" {
13
13
14
14
#include "ecmult.h"
15
15
#include "group.h"
16
- #include "util_local_visibility.h"
17
-
18
16
#if defined(EXHAUSTIVE_TEST_ORDER )
19
17
# if EXHAUSTIVE_TEST_ORDER == 7
20
18
# define WINDOW_G 3
@@ -29,8 +27,8 @@ static secp256k1_ge_storage secp256k1_pre_g[ECMULT_TABLE_SIZE(WINDOW_G)];
29
27
static secp256k1_ge_storage secp256k1_pre_g_128 [ECMULT_TABLE_SIZE (WINDOW_G )];
30
28
#else /* !defined(EXHAUSTIVE_TEST_ORDER) */
31
29
# define WINDOW_G ECMULT_WINDOW_SIZE
32
- SECP256K1_LOCAL_VAR const secp256k1_ge_storage secp256k1_pre_g [ECMULT_TABLE_SIZE (WINDOW_G )];
33
- SECP256K1_LOCAL_VAR const secp256k1_ge_storage secp256k1_pre_g_128 [ECMULT_TABLE_SIZE (WINDOW_G )];
30
+ extern const secp256k1_ge_storage secp256k1_pre_g [ECMULT_TABLE_SIZE (WINDOW_G )];
31
+ extern const secp256k1_ge_storage secp256k1_pre_g_128 [ECMULT_TABLE_SIZE (WINDOW_G )];
34
32
#endif /* defined(EXHAUSTIVE_TEST_ORDER) */
35
33
36
34
#ifdef __cplusplus
Original file line number Diff line number Diff line change @@ -13,12 +13,10 @@ extern "C" {
13
13
14
14
#include "group.h"
15
15
#include "ecmult_gen.h"
16
- #include "util_local_visibility.h"
17
-
18
16
#ifdef EXHAUSTIVE_TEST_ORDER
19
17
static secp256k1_ge_storage secp256k1_ecmult_gen_prec_table [COMB_BLOCKS ][COMB_POINTS ];
20
18
#else
21
- SECP256K1_LOCAL_VAR const secp256k1_ge_storage secp256k1_ecmult_gen_prec_table [COMB_BLOCKS ][COMB_POINTS ];
19
+ extern const secp256k1_ge_storage secp256k1_ecmult_gen_prec_table [COMB_BLOCKS ][COMB_POINTS ];
22
20
#endif /* defined(EXHAUSTIVE_TEST_ORDER) */
23
21
24
22
#ifdef __cplusplus
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments