diff options
author | Damien George <damien.p.george@gmail.com> | 2017-02-16 15:55:36 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-02-16 16:51:16 +1100 |
commit | eb90edb5c05dd613c144e2b66dd303f2248593e5 (patch) | |
tree | 30a12d41c850cc61fcc84a58ca19632b0ab35e5f /py/mpz.h | |
parent | dcdcc43dad0e1124a69e20fb6d008c7ffaf0e42a (diff) | |
download | micropython-eb90edb5c05dd613c144e2b66dd303f2248593e5.tar.gz micropython-eb90edb5c05dd613c144e2b66dd303f2248593e5.zip |
py/mpz: Remove obsolete declaration of mpz_as_str_size.
Diffstat (limited to 'py/mpz.h')
-rw-r--r-- | py/mpz.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -137,7 +137,6 @@ void mpz_as_bytes(const mpz_t *z, bool big_endian, size_t len, byte *buf); #if MICROPY_PY_BUILTINS_FLOAT mp_float_t mpz_as_float(const mpz_t *z); #endif -size_t mpz_as_str_size(const mpz_t *i, mp_uint_t base, const char *prefix, char comma); size_t mpz_as_str_inpl(const mpz_t *z, mp_uint_t base, const char *prefix, char base_char, char comma, char *str); #endif // __MICROPY_INCLUDED_PY_MPZ_H__ |