py: Fix function type: () -> (void).

This commit is contained in:
Damien George
2014-12-10 18:05:42 +00:00
parent 78d702c300
commit b4fe6e28eb
4 changed files with 9 additions and 9 deletions

View File

@@ -75,7 +75,7 @@ void mpz_init_from_int(mpz_t *z, mp_int_t val);
void mpz_init_fixed_from_int(mpz_t *z, mpz_dig_t *dig, mp_uint_t dig_alloc, mp_int_t val);
void mpz_deinit(mpz_t *z);
mpz_t *mpz_zero();
mpz_t *mpz_zero(void);
mpz_t *mpz_from_int(mp_int_t i);
mpz_t *mpz_from_ll(long long i, bool is_signed);
mpz_t *mpz_from_str(const char *str, mp_uint_t len, bool neg, mp_uint_t base);