Skip to content

Commit a136d00

Browse files
committed
corrected symbol export
1 parent 8cbf269 commit a136d00

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mp_printf_extension_init.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
#if (!(defined(_MSC_VER)) && !(defined(MP_NO_FILE)) && (defined(GLIBC_VERSION)) && (GLIBC_VERSION > 2009) )
77
#include <printf.h>
88

9-
int modZ = -1;
10-
int modM = -1;
11-
int modN = -1;
9+
static int modZ = -1;
10+
static int modM = -1;
11+
static int modN = -1;
1212

1313
/* Size of mp_digit at base 2 rounded up */
1414
#define MP_LIMB_BUFSIZ 64
15-
int s_mp_print_mp_int(FILE *stream, const struct printf_info *info, const void *const *args)
15+
static int s_mp_print_mp_int(FILE *stream, const struct printf_info *info, const void *const *args)
1616
{
1717
mp_err err = MP_OKAY;
1818

0 commit comments

Comments
 (0)