[TIP] Using tox with gmpy

holger krekel holger at merlinux.eu
Sun Jun 12 02:10:00 PDT 2011


Hi Aaron,

if i do "pip install gmpy" it also tries to install "gmpy2".
Not sure but maybe the download spec of gmpy goes to the
google code page and then finds gmpy2?

You may try "deps = gmpy==1.14" or "gmps < 2.0" or so
to avoid the pip/install mechanism pick the newer one.

holger

On Fri, Jun 10, 2011 at 18:04 -0600, Aaron Meurer wrote:
> Hi.
> 
> First, I figured out that if I use "deps =
> http://gmpy.googlecode.com/files/gmpy-1.14.zip" it works.  Well, sort
> of.  It works for those Python executables that already have gmpy
> installed, but doesn't even appear to try to install it for those that
> don't.  All of my Python executables would have gmpy installed if I
> could get it to compile, so this is actually about as good as I can
> hope for (I don't really have any hope for tox installing gmpy for
> those ones that I can't get it to work with).  I can attach the output
> for when I use "deps = http://gmpy.googlecode.com/files/gmpy-1.14.zip"
> if you are interested.
> 
> But to help you debug "deps = gmpy", I have created a tox.ini.test
> file, and ran
> 
> $tox -c tox.ini.test >| gmpy_problems.txt
> 
> Both files have been attached.  The compilation errors are what I
> would get if I tried installing gmpy2 manually (I think my GMP
> installation is messed up or something).  The issue here is not those,
> but the fact that it tries installing gmpy2 instead of gmpy1.
> 
> Aaron Meurer
> 
> On Fri, Jun 10, 2011 at 1:01 AM, holger krekel <holger at merlinux.eu> wrote:
> > Hi Aaron,
> >
> > can you post a screen trace of a "tox -v" invocation and
> > maybe the contents of your tox.ini file?
> >
> > best,
> > holger
> >
> > On Thu, Jun 09, 2011 at 22:46 -0600, Aaron S. Meurer wrote:
> >> Hi.  I'm kind of new to tox.  Sorry if this has been discussed before.  As far as I can tell, mailman doesn't have a search feature.
> >>
> >> I'm trying to use it to test with the dependency gmpy 1.14, but if I add "deps=gmpy" it tries installing gmpy2, which fails.  I understood from http://tox.testrun.org/en/latest/config.html#confval-deps=MULTI-LINE-LIST that it uses easy_install/pip (it's not really clear here which) to install these, but I checked and I get
> >>
> >> $pip search gmpy
> >> gmpy                      - MPIR/GMP interface to Python 2.4+ and 3.x
> >>   INSTALLED: 1.14
> >>   LATEST:    1.11rc1
> >>
> >> $sudo easy_install --dry-run gmpy
> >> Password:
> >> Searching for gmpy
> >> Best match: gmpy 1.14
> >> Adding gmpy 1.14 to easy-install.pth file
> >>
> >> Using /sw/lib/python2.7/site-packages
> >> Processing dependencies for gmpy
> >> Finished processing dependencies for gmpy
> >>
> >> So why would it try using gmpy2?  And more importantly, how do I make it use gmpy 1.14?  I can attach my tox logs if that would help.
> >>
> >> Aaron Meurer
> >> _______________________________________________
> >> testing-in-python mailing list
> >> testing-in-python at lists.idyll.org
> >> http://lists.idyll.org/listinfo/testing-in-python
> >>
> >

> _________________________________ [tox sdist] __________________________________
> [TOX] ***creating sdist package
> [TOX] /Users/aaronmeurer/Documents/python/sympy/sympy$ /usr/bin/python setup.py sdist --formats=zip --dist-dir .tox/dist >.tox/log/0.log
> [TOX] ***copying new sdistfile to '/Users/aaronmeurer/.tox/distshare/sympy-0.6.7-git.zip'
> ___________________________ [tox testenv:py25-gmpy] ____________________________
> [TOX] ***creating virtualenv py25-gmpy
> [TOX] /Users/aaronmeurer/Documents/python/sympy/sympy/.tox$ virtualenv --distribute --no-site-packages -p /Library/Frameworks/Python.framework/Versions/2.5/bin/python2.5 py25-gmpy >py25-gmpy/log/0.log
> [TOX] ***installing dependencies: gmpy
> [TOX] /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py25-gmpy/log$ ../bin/pip install --download-cache=/Users/aaronmeurer/Documents/python/sympy/sympy/.tox/_download gmpy >1.log
> [TOX] ERROR: invocation failed, logfile: /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py25-gmpy/log/1.log
> [TOX] ERROR: /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py25-gmpy/log$ ../bin/pip install --download-cache=/Users/aaronmeurer/Documents/python/sympy/sympy/.tox/_download gmpy >1.log
> Downloading/unpacking gmpy
>   Using download cache from /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/_download/http%3A%2F%2Fgmpy.googlecode.com%2Ffiles%2Fgmpy2-2.0.0a2.zip
>   Running setup.py egg_info for package gmpy
>     GMPY2 requires Python 2.6 or later.
>     Please use GMPY 1.x for earlier versions of Python.
> No files/directores in /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py25-gmpy/build/gmpy/pip-egg-info (from dependency_links.txt)
> Storing complete log in /Users/aaronmeurer/.pip/pip.log
> 
> [TOX] ERROR: could not install deps [gmpy]
> ___________________________ [tox testenv:py27-gmpy] ____________________________
> [TOX] ***creating virtualenv py27-gmpy
> [TOX] /Users/aaronmeurer/Documents/python/sympy/sympy/.tox$ virtualenv --distribute --no-site-packages -p /Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 py27-gmpy >py27-gmpy/log/0.log
> [TOX] ***installing dependencies: gmpy
> [TOX] /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py27-gmpy/log$ ../bin/pip install --download-cache=/Users/aaronmeurer/Documents/python/sympy/sympy/.tox/_download gmpy >1.log
> [TOX] ERROR: invocation failed, logfile: /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py27-gmpy/log/1.log
> [TOX] ERROR: /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py27-gmpy/log$ ../bin/pip install --download-cache=/Users/aaronmeurer/Documents/python/sympy/sympy/.tox/_download gmpy >1.log
> Downloading/unpacking gmpy
>   Using download cache from /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/_download/http%3A%2F%2Fgmpy.googlecode.com%2Ffiles%2Fgmpy2-2.0.0a2.zip
>   Running setup.py egg_info for package gmpy
>     
> Installing collected packages: gmpy
>   Running setup.py install for gmpy
>     building 'gmpy2' extension
>     gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386 -g -O2 -DNDEBUG -g -O3 -DWITHMPFR=1 -DNOMPC=1 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c src/gmpy2.c -o build/temp.macosx-10.3-fat-2.7/src/gmpy2.o
>     In file included from src/gmpy2.c:291:
>     src/gmpy.h:78:19: error: gmp.h: No such file or directory
>     In file included from src/gmpy2.c:291:
>     src/gmpy.h:90: error: syntax error before ‘mpz_t’
>     src/gmpy.h:90: warning: no semicolon at end of struct or union
>     src/gmpy.h:92: error: syntax error before ‘}’ token
>     src/gmpy.h:92: warning: data definition has no type or storage class
>     src/gmpy.h:96: error: syntax error before ‘mpq_t’
>     src/gmpy.h:96: warning: no semicolon at end of struct or union
>     src/gmpy.h:98: error: syntax error before ‘}’ token
>     src/gmpy.h:98: warning: data definition has no type or storage class
>     src/gmpy.h:102: error: syntax error before ‘mpz_t’
>     src/gmpy.h:102: warning: no semicolon at end of struct or union
>     src/gmpy.h:103: warning: data definition has no type or storage class
>     src/gmpy.h:106:20: error: mpfr.h: No such file or directory
>     In file included from src/gmpy.h:107,
>                      from src/gmpy2.c:291:
>     src/gmpy_mpfr.h:46: error: syntax error before ‘mpfr_t’
>     src/gmpy_mpfr.h:46: warning: no semicolon at end of struct or union
>     src/gmpy_mpfr.h:50: error: syntax error before ‘}’ token
>     src/gmpy_mpfr.h:50: warning: data definition has no type or storage class
>     src/gmpy_mpfr.h:163: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:165: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:165: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.h:165: warning: data definition has no type or storage class
>     src/gmpy_mpfr.h:166: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:166: warning: data definition has no type or storage class
>     src/gmpy_mpfr.h:167: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:167: warning: data definition has no type or storage class
>     src/gmpy_mpfr.h:168: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:168: warning: data definition has no type or storage class
>     src/gmpy_mpfr.h:169: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:169: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.h:169: warning: data definition has no type or storage class
>     In file included from src/gmpy2.c:291:
>     src/gmpy.h:203: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy.h:203: warning: no semicolon at end of struct or union
>     src/gmpy.h:208: warning: data definition has no type or storage class
>     src/gmpy.h:214: error: syntax error before ‘emax’
>     src/gmpy.h:214: warning: data definition has no type or storage class
>     src/gmpy.h:215: error: syntax error before ‘emin’
>     src/gmpy.h:215: warning: data definition has no type or storage class
>     src/gmpy.h:228: error: syntax error before ‘}’ token
>     src/gmpy.h:228: warning: data definition has no type or storage class
>     src/gmpy.h:232: error: syntax error before ‘gmpy_context’
>     src/gmpy.h:232: warning: no semicolon at end of struct or union
>     src/gmpy.h:234: error: syntax error before ‘}’ token
>     src/gmpy.h:234: warning: data definition has no type or storage class
>     src/gmpy2.c:373: error: syntax error before ‘*’ token
>     src/gmpy2.c:373: warning: data definition has no type or storage class
>     In file included from src/gmpy2.c:404:
>     src/mpz_pylong.c:21:2: error: #error "Python limb larger than GMP limb !!!"
>     In file included from src/gmpy2.c:404:
>     src/mpz_pylong.c:48: error: syntax error before ‘up’
>     src/mpz_pylong.c: In function ‘mpn_sizebits’:
>     src/mpz_pylong.c:50: error: ‘mp_limb_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:50: error: (Each undeclared identifier is reported only once
>     src/mpz_pylong.c:50: error: for each function it appears in.)
>     src/mpz_pylong.c:50: error: syntax error before ‘x’
>     src/mpz_pylong.c:51: error: ‘un’ undeclared (first use in this function)
>     src/mpz_pylong.c:52: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/mpz_pylong.c:53: error: ‘x’ undeclared (first use in this function)
>     src/mpz_pylong.c:53: error: ‘up’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:89: error: syntax error before ‘up’
>     src/mpz_pylong.c: In function ‘mpn_pylong_size’:
>     src/mpz_pylong.c:91: error: ‘up’ undeclared (first use in this function)
>     src/mpz_pylong.c:91: error: ‘un’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:100: error: syntax error before ‘mp_ptr’
>     src/mpz_pylong.c: In function ‘mpn_get_pylong’:
>     src/mpz_pylong.c:102: error: ‘mp_limb_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:102: error: syntax error before ‘n1’
>     src/mpz_pylong.c:106: error: ‘digits’ undeclared (first use in this function)
>     src/mpz_pylong.c:106: error: ‘size’ undeclared (first use in this function)
>     src/mpz_pylong.c:109: error: ‘un’ undeclared (first use in this function)
>     src/mpz_pylong.c:115: error: ‘n1’ undeclared (first use in this function)
>     src/mpz_pylong.c:115: error: ‘up’ undeclared (first use in this function)
>     src/mpz_pylong.c:116: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/mpz_pylong.c:128: error: ‘n0’ undeclared (first use in this function)
>     src/mpz_pylong.c: In function ‘mpn_size_from_pylong’:
>     src/mpz_pylong.c:140: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:144: error: syntax error before ‘up’
>     src/mpz_pylong.c: In function ‘mpn_set_pylong’:
>     src/mpz_pylong.c:146: error: ‘mp_limb_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:146: error: syntax error before ‘n1’
>     src/mpz_pylong.c:150: error: ‘digits’ undeclared (first use in this function)
>     src/mpz_pylong.c:150: error: ‘size’ undeclared (first use in this function)
>     src/mpz_pylong.c:154: error: ‘un’ undeclared (first use in this function)
>     src/mpz_pylong.c:154: error: ‘up’ undeclared (first use in this function)
>     src/mpz_pylong.c:159: error: ‘n1’ undeclared (first use in this function)
>     src/mpz_pylong.c:160: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/mpz_pylong.c:167: error: ‘d’ undeclared (first use in this function)
>     src/mpz_pylong.c:168: error: ‘GMP_NUMB_MASK’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:194: error: syntax error before ‘up’
>     src/mpz_pylong.c: In function ‘mpn_pythonhash’:
>     src/mpz_pylong.c:196: error: ‘mp_limb_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:196: error: syntax error before ‘n1’
>     src/mpz_pylong.c:197: error: ‘mp_size_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:202: error: ‘un’ undeclared (first use in this function)
>     src/mpz_pylong.c:204: error: ‘i’ undeclared (first use in this function)
>     src/mpz_pylong.c:205: error: ‘n1’ undeclared (first use in this function)
>     src/mpz_pylong.c:205: error: ‘up’ undeclared (first use in this function)
>     src/mpz_pylong.c:213: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/mpz_pylong.c:232: error: ‘n0’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:247: error: syntax error before ‘z’
>     src/mpz_pylong.c: In function ‘mpz_pythonhash’:
>     src/mpz_pylong.c:249: error: ‘z’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:259: error: syntax error before ‘z’
>     src/mpz_pylong.c: In function ‘mpz_get_PyLong’:
>     src/mpz_pylong.c:261: error: ‘z’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:276: error: syntax error before ‘z’
>     src/mpz_pylong.c: In function ‘mpz_set_PyLong’:
>     src/mpz_pylong.c:278: error: ‘lsrc’ undeclared (first use in this function)
>     src/mpz_pylong.c:284: error: ‘z’ undeclared (first use in this function)
>     src/mpz_pylong.c:297: error: ‘mp_size_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:297: error: syntax error before ‘size’
>     In file included from src/gmpy2.c:408:
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:40: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:40: warning: data definition has no type or storage class
>     src/gmpy_cache.c: In function ‘set_zcache’:
>     src/gmpy_cache.c:53: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:57: error: syntax error before ‘newo’
>     src/gmpy_cache.c: In function ‘mpz_inoc’:
>     src/gmpy_cache.c:64: error: ‘newo’ undeclared (first use in this function)
>     src/gmpy_cache.c:64: error: subscripted value is neither array nor pointer
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:73: error: syntax error before ‘oldo’
>     src/gmpy_cache.c: In function ‘mpz_cloc’:
>     src/gmpy_cache.c:75: error: ‘oldo’ undeclared (first use in this function)
>     src/gmpy_cache.c:76: error: subscripted value is neither array nor pointer
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:94: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:94: warning: data definition has no type or storage class
>     src/gmpy_cache.c: In function ‘set_pympzcache’:
>     src/gmpy_cache.c:104: error: request for member ‘z’ in something not a structure or union
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:112: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pympz_new’:
>     src/gmpy_cache.c:115: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:127: error: syntax error before ‘)’ token
>     src/gmpy_cache.c:127: error: syntax error before ‘)’ token
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:136: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pympz_dealloc’:
>     src/gmpy_cache.c:140: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:151: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:151: warning: data definition has no type or storage class
>     src/gmpy_cache.c: In function ‘set_pyxmpzcache’:
>     src/gmpy_cache.c:161: error: request for member ‘z’ in something not a structure or union
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:169: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pyxmpz_new’:
>     src/gmpy_cache.c:172: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:184: error: syntax error before ‘)’ token
>     src/gmpy_cache.c:184: error: syntax error before ‘)’ token
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:192: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pyxmpz_dealloc’:
>     src/gmpy_cache.c:196: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:207: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:207: warning: data definition has no type or storage class
>     src/gmpy_cache.c: In function ‘set_pympqcache’:
>     src/gmpy_cache.c:217: error: request for member ‘q’ in something not a structure or union
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:225: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pympq_new’:
>     src/gmpy_cache.c:228: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:240: error: syntax error before ‘)’ token
>     src/gmpy_cache.c:240: error: syntax error before ‘)’ token
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:249: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pympq_dealloc’:
>     src/gmpy_cache.c:253: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:253: error: invalid type argument of ‘->’
>     In file included from src/gmpy2.c:291:
>     src/gmpy.h:78:19: error: gmp.h: No such file or directory
>     In file included from src/gmpy2.c:291:
>     src/gmpy.h:90: error: syntax error before ‘mpz_t’
>     src/gmpy.h:90: warning: no semicolon at end of struct or union
>     src/gmpy.h:92: error: syntax error before ‘}’ token
>     src/gmpy.h:92: warning: data definition has no type or storage class
>     src/gmpy.h:96: error: syntax error before ‘mpq_t’
>     src/gmpy.h:96: warning: no semicolon at end of struct or union
>     src/gmpy.h:98: error: syntax error before ‘}’ token
>     src/gmpy.h:98: warning: data definition has no type or storage class
>     src/gmpy.h:102: error: syntax error before ‘mpz_t’
>     src/gmpy.h:102: warning: no semicolon at end of struct or union
>     src/gmpy.h:103: warning: data definition has no type or storage class
>     src/gmpy.h:106:20: error: mpfr.h: No such file or directory
>     In file included from src/gmpy.h:107,
>                      from src/gmpy2.c:291:
>     src/gmpy_mpfr.h:46: error: syntax error before ‘mpfr_t’
>     src/gmpy_mpfr.h:46: warning: no semicolon at end of struct or union
>     src/gmpy_mpfr.h:50: error: syntax error before ‘}’ token
>     src/gmpy_mpfr.h:50: warning: data definition has no type or storage class
>     src/gmpy_mpfr.h:163: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:165: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:165: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.h:165: warning: data definition has no type or storage class
>     src/gmpy_mpfr.h:166: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:166: warning: data definition has no type or storage class
>     src/gmpy_mpfr.h:167: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:167: warning: data definition has no type or storage class
>     src/gmpy_mpfr.h:168: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:168: warning: data definition has no type or storage class
>     src/gmpy_mpfr.h:169: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.h:169: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.h:169: warning: data definition has no type or storage class
>     In file included from src/gmpy2.c:291:
>     src/gmpy.h:203: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy.h:203: warning: no semicolon at end of struct or union
>     src/gmpy.h:208: warning: data definition has no type or storage class
>     src/gmpy.h:214: error: syntax error before ‘emax’
>     src/gmpy.h:214: warning: data definition has no type or storage class
>     src/gmpy.h:215: error: syntax error before ‘emin’
>     src/gmpy.h:215: warning: data definition has no type or storage class
>     src/gmpy.h:228: error: syntax error before ‘}’ token
>     src/gmpy.h:228: warning: data definition has no type or storage class
>     src/gmpy.h:232: error: syntax error before ‘gmpy_context’
>     src/gmpy.h:232: warning: no semicolon at end of struct or union
>     src/gmpy.h:234: error: syntax error before ‘}’ token
>     src/gmpy.h:234: warning: data definition has no type or storage class
>     src/gmpy2.c:373: error: syntax error before ‘*’ token
>     src/gmpy2.c:373: warning: data definition has no type or storage class
>     In file included from src/gmpy2.c:404:
>     src/mpz_pylong.c:21:2: error: #error "Python limb larger than GMP limb !!!"
>     In file included from src/gmpy2.c:404:
>     src/mpz_pylong.c:48: error: syntax error before ‘up’
>     src/mpz_pylong.c: In function ‘mpn_sizebits’:
>     src/mpz_pylong.c:50: error: ‘mp_limb_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:50: error: (Each undeclared identifier is reported only once
>     src/mpz_pylong.c:50: error: for each function it appears in.)
>     src/mpz_pylong.c:50: error: syntax error before ‘x’
>     src/mpz_pylong.c:51: error: ‘un’ undeclared (first use in this function)
>     src/mpz_pylong.c:52: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/mpz_pylong.c:53: error: ‘x’ undeclared (first use in this function)
>     src/mpz_pylong.c:53: error: ‘up’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:89: error: syntax error before ‘up’
>     src/mpz_pylong.c: In function ‘mpn_pylong_size’:
>     src/mpz_pylong.c:91: error: ‘up’ undeclared (first use in this function)
>     src/mpz_pylong.c:91: error: ‘un’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:100: error: syntax error before ‘mp_ptr’
>     src/mpz_pylong.c: In function ‘mpn_get_pylong’:
>     src/mpz_pylong.c:102: error: ‘mp_limb_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:102: error: syntax error before ‘n1’
>     src/mpz_pylong.c:106: error: ‘digits’ undeclared (first use in this function)
>     src/mpz_pylong.c:106: error: ‘size’ undeclared (first use in this function)
>     src/mpz_pylong.c:109: error: ‘un’ undeclared (first use in this function)
>     src/gmpy_cache.c:254: error: invalid type argument of ‘->’
>     src/mpz_pylong.c:115: error: ‘n1’ undeclared (first use in this function)
>     src/mpz_pylong.c:115: error: ‘up’ undeclared (first use in this function)
>     src/mpz_pylong.c:116: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/mpz_pylong.c:128: error: ‘n0’ undeclared (first use in this function)
>     src/mpz_pylong.c: In function ‘mpn_size_from_pylong’:
>     src/mpz_pylong.c:140: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:144: error: syntax error before ‘up’
>     src/mpz_pylong.c: In function ‘mpn_set_pylong’:
>     src/mpz_pylong.c:146: error: ‘mp_limb_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:146: error: syntax error before ‘n1’
>     src/mpz_pylong.c:150: error: ‘digits’ undeclared (first use in this function)
>     src/mpz_pylong.c:150: error: ‘size’ undeclared (first use in this function)
>     src/mpz_pylong.c:154: error: ‘un’ undeclared (first use in this function)
>     src/mpz_pylong.c:154: error: ‘up’ undeclared (first use in this function)
>     src/mpz_pylong.c:159: error: ‘n1’ undeclared (first use in this function)
>     src/mpz_pylong.c:160: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/mpz_pylong.c:167: error: ‘d’ undeclared (first use in this function)
>     src/mpz_pylong.c:168: error: ‘GMP_NUMB_MASK’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:194: error: syntax error before ‘up’
>     src/mpz_pylong.c: In function ‘mpn_pythonhash’:
>     src/mpz_pylong.c:196: error: ‘mp_limb_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:196: error: syntax error before ‘n1’
>     src/mpz_pylong.c:197: error: ‘mp_size_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:202: error: ‘un’ undeclared (first use in this function)
>     src/mpz_pylong.c:204: error: ‘i’ undeclared (first use in this function)
>     src/mpz_pylong.c:205: error: ‘n1’ undeclared (first use in this function)
>     src/mpz_pylong.c:205: error: ‘up’ undeclared (first use in this function)
>     src/mpz_pylong.c:213: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/mpz_pylong.c:232: error: ‘n0’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:247: error: syntax error before ‘z’
>     src/mpz_pylong.c: In function ‘mpz_pythonhash’:
>     src/mpz_pylong.c:249: error: ‘z’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:259: error: syntax error before ‘z’
>     src/mpz_pylong.c: In function ‘mpz_get_PyLong’:
>     src/mpz_pylong.c:261: error: ‘z’ undeclared (first use in this function)
>     src/mpz_pylong.c: At top level:
>     src/mpz_pylong.c:276: error: syntax error before ‘z’
>     src/mpz_pylong.c: In function ‘mpz_set_PyLong’:
>     src/mpz_pylong.c:278: error: ‘lsrc’ undeclared (first use in this function)
>     src/mpz_pylong.c:284: error: ‘z’ undeclared (first use in this function)
>     src/mpz_pylong.c:297: error: ‘mp_size_t’ undeclared (first use in this function)
>     src/mpz_pylong.c:297: error: syntax error before ‘size’
>     In file included from src/gmpy2.c:408:
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:40: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:40: warning: data definition has no type or storage class
>     src/gmpy_cache.c: In function ‘set_zcache’:
>     src/gmpy_cache.c:53: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:57: error: syntax error before ‘newo’
>     src/gmpy_cache.c: In function ‘mpz_inoc’:
>     src/gmpy_cache.c:64: error: ‘newo’ undeclared (first use in this function)
>     src/gmpy_cache.c:64: error: subscripted value is neither array nor pointer
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:73: error: syntax error before ‘oldo’
>     src/gmpy_cache.c: In function ‘mpz_cloc’:
>     src/gmpy_cache.c:75: error: ‘oldo’ undeclared (first use in this function)
>     src/gmpy_cache.c:76: error: subscripted value is neither array nor pointer
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:94: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:94: warning: data definition has no type or storage class
>     src/gmpy_cache.c: In function ‘set_pympzcache’:
>     src/gmpy_cache.c:104: error: request for member ‘z’ in something not a structure or union
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:112: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pympz_new’:
>     src/gmpy_cache.c:115: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:127: error: syntax error before ‘)’ token
>     src/gmpy_cache.c:127: error: syntax error before ‘)’ token
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:136: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pympz_dealloc’:
>     src/gmpy_cache.c:140: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:151: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:151: warning: data definition has no type or storage class
>     src/gmpy_cache.c: In function ‘set_pyxmpzcache’:
>     src/gmpy_cache.c:161: error: request for member ‘z’ in something not a structure or union
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:169: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pyxmpz_new’:
>     src/gmpy_cache.c:172: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:184: error: syntax error before ‘)’ token
>     src/gmpy_cache.c:184: error: syntax error before ‘)’ token
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:192: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pyxmpz_dealloc’:
>     src/gmpy_cache.c:196: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:207: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:207: warning: data definition has no type or storage class
>     src/gmpy_cache.c: In function ‘set_pympqcache’:
>     src/gmpy_cache.c:217: error: request for member ‘q’ in something not a structure or union
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:225: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pympq_new’:
>     src/gmpy_cache.c:228: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:240: error: syntax error before ‘)’ token
>     src/gmpy_cache.c:240: error: syntax error before ‘)’ token
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:249: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pympq_dealloc’:
>     src/gmpy_cache.c:253: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:253: error: invalid type argument of ‘->’
>     src/gmpy_cache.c:254: error: invalid type argument of ‘->’
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:266: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:266: warning: data definition has no type or storage class
>     src/gmpy_cache.c: In function ‘set_pympfrcache’:
>     src/gmpy_cache.c:276: error: request for member ‘f’ in something not a structure or union
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:284: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:285: error: syntax error before ‘bits’
>     src/gmpy_cache.c: In function ‘Pympfr_new’:
>     src/gmpy_cache.c:287: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:290: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_cache.c:291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_cache.c:292: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
>     src/gmpy_cache.c:292: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
>     src/gmpy_cache.c:306: error: syntax error before ‘)’ token
>     src/gmpy_cache.c:306: error: syntax error before ‘)’ token
>     src/gmpy_cache.c:312: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:317: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pympfr_dealloc’:
>     src/gmpy_cache.c:323: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:323: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:412:
>     src/gmpy_misc.c: In function ‘Pygmpy_get_mp_version’:
>     src/gmpy_misc.c:73: error: ‘gmp_version’ undeclared (first use in this function)
>     src/gmpy_misc.c: In function ‘Pygmpy_get_mpfr_version’:
>     src/gmpy_misc.c:88: error: ‘MPFR_VERSION_STRING’ undeclared (first use in this function)
>     src/gmpy_misc.c: In function ‘Pygmpy_get_mp_limbsize’:
>     src/gmpy_misc.c:116: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:417:
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:34: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_new’:
>     src/gmpy_context.c:37: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c:39: error: syntax error before ‘)’ token
>     src/gmpy_context.c:39: error: syntax error before ‘)’ token
>     src/gmpy_context.c:46: error: ‘MPFR_RNDN’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:68: error: syntax error before ‘return’
>     src/gmpy_context.c:72: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_dealloc’:
>     src/gmpy_context.c:74: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: In function ‘_round_to_name’:
>     src/gmpy_context.c:83: error: ‘MPFR_RNDN’ undeclared (first use in this function)
>     src/gmpy_context.c:84: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
>     src/gmpy_context.c:85: error: ‘MPFR_RNDU’ undeclared (first use in this function)
>     src/gmpy_context.c:86: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy_context.c:87: error: ‘MPFR_RNDA’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:93: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_repr’:
>     src/gmpy_context.c:136: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:266: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:266: warning: data definition has no type or storage class
>     src/gmpy_context.c: In function ‘Pygmpy_context’:
>     src/gmpy_context.c:190: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_context.c: In function ‘Pygmpy_new_context’:
>     src/gmpy_context.c:258: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_cache.c: In function ‘set_pympfrcache’:
>     src/gmpy_context.c: In function ‘Pygmpy_set_context’:
>     src/gmpy_cache.c:276: error: request for member ‘f’ in something not a structure or union
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:284: error: syntax error before ‘*’ token
>     src/gmpy_cache.c:285: error: syntax error before ‘bits’
>     src/gmpy_cache.c: In function ‘Pympfr_new’:
>     src/gmpy_cache.c:287: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:290: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_cache.c:291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_cache.c:292: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
>     src/gmpy_cache.c:292: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
>     src/gmpy_cache.c:306: error: syntax error before ‘)’ token
>     src/gmpy_cache.c:306: error: syntax error before ‘)’ token
>     src/gmpy_cache.c:312: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_cache.c: At top level:
>     src/gmpy_cache.c:317: error: syntax error before ‘*’ token
>     src/gmpy_cache.c: In function ‘Pympfr_dealloc’:
>     src/gmpy_cache.c:323: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_cache.c:323: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:412:
>     src/gmpy_misc.c: In function ‘Pygmpy_get_mp_version’:
>     src/gmpy_misc.c:73: error: ‘gmp_version’ undeclared (first use in this function)
>     src/gmpy_misc.c: In function ‘Pygmpy_get_mpfr_version’:
>     src/gmpy_misc.c:88: error: ‘MPFR_VERSION_STRING’ undeclared (first use in this function)
>     src/gmpy_misc.c: In function ‘Pygmpy_get_mp_limbsize’:
>     src/gmpy_misc.c:116: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:417:
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:34: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_new’:
>     src/gmpy_context.c:37: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c:39: error: syntax error before ‘)’ token
>     src/gmpy_context.c:39: error: syntax error before ‘)’ token
>     src/gmpy_context.c:46: error: ‘MPFR_RNDN’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:68: error: syntax error before ‘return’
>     src/gmpy_context.c:72: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_dealloc’:
>     src/gmpy_context.c:74: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: In function ‘_round_to_name’:
>     src/gmpy_context.c:83: error: ‘MPFR_RNDN’ undeclared (first use in this function)
>     src/gmpy_context.c:84: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
>     src/gmpy_context.c:85: error: ‘MPFR_RNDU’ undeclared (first use in this function)
>     src/gmpy_context.c:86: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy_context.c:87: error: ‘MPFR_RNDA’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:93: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_repr’:
>     src/gmpy_context.c:136: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: In function ‘Pygmpy_context’:
>     src/gmpy_context.c:190: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_context.c: In function ‘Pygmpy_new_context’:
>     src/gmpy_context.c:258: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_context.c: In function ‘Pygmpy_set_context’:
>     src/gmpy_context.c:322: error: syntax error before ‘)’ token
>     src/gmpy_context.c:323: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c:324: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c: In function ‘GMPyContext_enter’:
>     src/gmpy_context.c:336: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_context.c:336: error: ‘save’ undeclared (first use in this function)
>     src/gmpy_context.c:338: error: syntax error before ‘)’ token
>     src/gmpy_context.c:344: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c:348: error: syntax error before ‘)’ token
>     src/gmpy_context.c:350: error: syntax error before ‘)’ token
>     src/gmpy_context.c:351: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c:352: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c: In function ‘GMPyContext_exit’:
>     src/gmpy_context.c:362: error: syntax error before ‘)’ token
>     src/gmpy_context.c:368: error: syntax error before ‘)’ token
>     src/gmpy_context.c:368: error: syntax error before ‘)’ token
>     src/gmpy_context.c:369: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c:370: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c:371: error: syntax error before ‘)’ token
>     src/gmpy_context.c: In function ‘GMPyContext_clear_flags’:
>     src/gmpy_context.c:381: error: syntax error before ‘)’ token
>     src/gmpy_context.c:382: error: syntax error before ‘)’ token
>     src/gmpy_context.c:383: error: syntax error before ‘)’ token
>     src/gmpy_context.c:384: error: syntax error before ‘)’ token
>     src/gmpy_context.c:385: error: syntax error before ‘)’ token
>     src/gmpy_context.c:386: error: syntax error before ‘)’ token
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:409: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_subnormalize’:
>     src/gmpy_context.c:409: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:409: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_subnormalize’:
>     src/gmpy_context.c:409: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:409: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:410: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_underflow’:
>     src/gmpy_context.c:410: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:410: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_underflow’:
>     src/gmpy_context.c:410: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:410: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:411: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_overflow’:
>     src/gmpy_context.c:411: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:411: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_overflow’:
>     src/gmpy_context.c:411: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:411: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:412: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_inexact’:
>     src/gmpy_context.c:412: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:412: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_inexact’:
>     src/gmpy_context.c:412: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:412: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:413: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_invalid’:
>     src/gmpy_context.c:413: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:413: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_invalid’:
>     src/gmpy_context.c:413: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:413: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:414: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_erange’:
>     src/gmpy_context.c:414: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:414: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_erange’:
>     src/gmpy_context.c:414: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:414: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:415: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_divzero’:
>     src/gmpy_context.c:415: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:415: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_divzero’:
>     src/gmpy_context.c:415: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:415: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:416: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_underflow’:
>     src/gmpy_context.c:416: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:416: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_underflow’:
>     src/gmpy_context.c:416: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:416: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:417: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_overflow’:
>     src/gmpy_context.c:417: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:417: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_overflow’:
>     src/gmpy_context.c:417: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:417: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:418: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_inexact’:
>     src/gmpy_context.c:322: error: syntax error before ‘)’ token
>     src/gmpy_context.c:323: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c:324: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c: In function ‘GMPyContext_enter’:
>     src/gmpy_context.c:336: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_context.c:336: error: ‘save’ undeclared (first use in this function)
>     src/gmpy_context.c:338: error: syntax error before ‘)’ token
>     src/gmpy_context.c:344: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c:348: error: syntax error before ‘)’ token
>     src/gmpy_context.c:350: error: syntax error before ‘)’ token
>     src/gmpy_context.c:351: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c:352: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c: In function ‘GMPyContext_exit’:
>     src/gmpy_context.c:362: error: syntax error before ‘)’ token
>     src/gmpy_context.c:368: error: syntax error before ‘)’ token
>     src/gmpy_context.c:368: error: syntax error before ‘)’ token
>     src/gmpy_context.c:369: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c:370: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_context.c:371: error: syntax error before ‘)’ token
>     src/gmpy_context.c: In function ‘GMPyContext_clear_flags’:
>     src/gmpy_context.c:381: error: syntax error before ‘)’ token
>     src/gmpy_context.c:382: error: syntax error before ‘)’ token
>     src/gmpy_context.c:383: error: syntax error before ‘)’ token
>     src/gmpy_context.c:384: error: syntax error before ‘)’ token
>     src/gmpy_context.c:385: error: syntax error before ‘)’ token
>     src/gmpy_context.c:386: error: syntax error before ‘)’ token
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:409: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_subnormalize’:
>     src/gmpy_context.c:409: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:409: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_subnormalize’:
>     src/gmpy_context.c:409: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:409: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:410: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_underflow’:
>     src/gmpy_context.c:410: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:410: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_underflow’:
>     src/gmpy_context.c:410: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:410: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:411: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_overflow’:
>     src/gmpy_context.c:411: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:411: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_overflow’:
>     src/gmpy_context.c:411: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:411: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:412: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_inexact’:
>     src/gmpy_context.c:412: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:412: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_inexact’:
>     src/gmpy_context.c:412: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:412: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:413: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_invalid’:
>     src/gmpy_context.c:413: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:413: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_invalid’:
>     src/gmpy_context.c:413: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:413: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:414: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_erange’:
>     src/gmpy_context.c:414: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:414: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_erange’:
>     src/gmpy_context.c:414: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:414: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:415: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_divzero’:
>     src/gmpy_context.c:415: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:415: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_divzero’:
>     src/gmpy_context.c:415: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:415: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:416: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_underflow’:
>     src/gmpy_context.c:416: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:416: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_underflow’:
>     src/gmpy_context.c:416: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:416: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:417: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_overflow’:
>     src/gmpy_context.c:417: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:417: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_overflow’:
>     src/gmpy_context.c:417: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:417: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:418: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_inexact’:
>     src/gmpy_context.c:418: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:418: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_inexact’:
>     src/gmpy_context.c:418: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:418: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:419: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_invalid’:
>     src/gmpy_context.c:419: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:419: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_invalid’:
>     src/gmpy_context.c:419: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:419: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:420: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_erange’:
>     src/gmpy_context.c:420: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:420: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_erange’:
>     src/gmpy_context.c:420: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:420: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:421: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_divzero’:
>     src/gmpy_context.c:421: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:421: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_divzero’:
>     src/gmpy_context.c:421: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:421: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:424: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_precision’:
>     src/gmpy_context.c:426: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:430: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_precision’:
>     src/gmpy_context.c:434: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:439: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
>     src/gmpy_context.c:439: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
>     src/gmpy_context.c:443: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c:443: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_context.c:443: error: syntax error before ‘temp’
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:510: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_round’:
>     src/gmpy_context.c:512: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:516: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_round’:
>     src/gmpy_context.c:520: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:529: error: ‘MPFR_RNDN’ undeclared (first use in this function)
>     src/gmpy_context.c:418: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:418: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_inexact’:
>     src/gmpy_context.c:418: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:418: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:419: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_invalid’:
>     src/gmpy_context.c:419: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:419: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_invalid’:
>     src/gmpy_context.c:419: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:419: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:420: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_erange’:
>     src/gmpy_context.c:420: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:420: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_erange’:
>     src/gmpy_context.c:420: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:420: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:421: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_trap_divzero’:
>     src/gmpy_context.c:421: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:421: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_trap_divzero’:
>     src/gmpy_context.c:421: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:421: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:424: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_precision’:
>     src/gmpy_context.c:426: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:430: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_precision’:
>     src/gmpy_context.c:434: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:439: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
>     src/gmpy_context.c:439: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
>     src/gmpy_context.c:443: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c:443: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_context.c:443: error: syntax error before ‘temp’
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:510: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_round’:
>     src/gmpy_context.c:512: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:516: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_round’:
>     src/gmpy_context.c:520: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:529: error: ‘MPFR_RNDN’ undeclared (first use in this function)
>     src/gmpy_context.c:530: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c:531: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
>     src/gmpy_context.c:533: error: ‘MPFR_RNDU’ undeclared (first use in this function)
>     src/gmpy_context.c:535: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy_context.c:537: error: ‘MPFR_RNDA’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:630: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_emin’:
>     src/gmpy_context.c:632: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:530: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c:636: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_emin’:
>     src/gmpy_context.c:640: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:531: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
>     src/gmpy_context.c:533: error: ‘MPFR_RNDU’ undeclared (first use in this function)
>     src/gmpy_context.c:535: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy_context.c:537: error: ‘MPFR_RNDA’ undeclared (first use in this function)
>     src/gmpy_context.c:649: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_context.c:649: error: syntax error before ‘exp’
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:653: error: syntax error before ‘->’ token
>     src/gmpy_context.c:654: warning: parameter names (without types) in function declaration
>     src/gmpy_context.c:654: warning: data definition has no type or storage class
>     src/gmpy_context.c:655: error: syntax error before ‘return’
>     src/gmpy_context.c:659: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_emax’:
>     src/gmpy_context.c:661: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:665: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_emax’:
>     src/gmpy_context.c:669: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:630: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_emin’:
>     src/gmpy_context.c:632: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c:678: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_context.c:678: error: syntax error before ‘exp’
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:636: error: syntax error before ‘*’ token
>     src/gmpy_context.c: At top level:src/gmpy_context.c: In function ‘GMPyContext_set_emin’:
>     
>     src/gmpy_context.c:682: error: syntax error before ‘->’ tokensrc/gmpy_context.c:640: error: ‘value’ undeclared (first use in this function)
>     
>     src/gmpy_context.c:683: warning: parameter names (without types) in function declaration
>     src/gmpy_context.c:683: warning: data definition has no type or storage class
>     src/gmpy_context.c:684: error: syntax error before ‘return’
>     src/gmpy_context.c:649: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_context.c:649: error: syntax error before ‘exp’
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:653: error: syntax error before ‘->’ token
>     src/gmpy_context.c:654: warning: parameter names (without types) in function declaration
>     src/gmpy_context.c:654: warning: data definition has no type or storage class
>     src/gmpy_context.c:655: error: syntax error before ‘return’
>     src/gmpy_context.c:659: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_get_emax’:
>     src/gmpy_context.c:661: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:665: error: syntax error before ‘*’ token
>     src/gmpy_context.c: In function ‘GMPyContext_set_emax’:
>     src/gmpy_context.c:669: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_context.c:678: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_context.c:678: error: syntax error before ‘exp’
>     src/gmpy_context.c: At top level:
>     src/gmpy_context.c:682: error: syntax error before ‘->’ token
>     src/gmpy_context.c:683: warning: parameter names (without types) in function declaration
>     src/gmpy_context.c:683: warning: data definition has no type or storage class
>     src/gmpy_context.c:684: error: syntax error before ‘return’
>     In file included from src/gmpy2.c:422:
>     src/gmpy_binary.c: In function ‘Pympz_From_Old_Binary’:
>     src/gmpy_binary.c:41: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_binary.c: In function ‘Pympq_From_Old_Binary’:
>     src/gmpy_binary.c:73: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_binary.c:73: error: syntax error before ‘numerator’
>     src/gmpy_binary.c:74: error: ‘result’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:422:
>     src/gmpy_binary.c: In function ‘Pympz_From_Old_Binary’:
>     src/gmpy_binary.c:41: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_binary.c:102: error: ‘numerator’ undeclared (first use in this function)
>     src/gmpy_binary.c:103: error: ‘denominator’ undeclared (first use in this function)
>     src/gmpy_binary.c: In function ‘Pympfr_From_Old_Binary’:
>     src/gmpy_binary.c:126: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_binary.c:127: error: ‘mpfr_t’ undeclared (first use in this function)
>     src/gmpy_binary.c:127: error: syntax error before ‘digit’
>     src/gmpy_binary.c:128: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_binary.c:141: error: ‘prec’ undeclared (first use in this function)
>     src/gmpy_binary.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_binary.c:193: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_binary.c:194: error: syntax error before ‘digit’
>     src/gmpy_binary.c:196: error: syntax error before ‘digit’
>     src/gmpy_binary.c:197: error: syntax error before ‘digit’
>     src/gmpy_binary.c:199: error: syntax error before ‘digit’
>     src/gmpy_binary.c:201: error: syntax error before ‘digit’
>     src/gmpy_binary.c:204: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_binary.c:206: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_binary.c:209: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:426: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2Pympz’:
>     src/gmpy2.c:429: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:433: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:437: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2Pyxmpz’:
>     src/gmpy2.c:440: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:444: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:448: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2Pympz’:
>     src/gmpy_binary.c: In function ‘Pympq_From_Old_Binary’:
>     src/gmpy_binary.c:73: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_binary.c:73: error: syntax error before ‘numerator’
>     src/gmpy_binary.c:74: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_binary.c:102: error: ‘numerator’ undeclared (first use in this function)
>     src/gmpy_binary.c:103: error: ‘denominator’ undeclared (first use in this function)
>     src/gmpy_binary.c: In function ‘Pympfr_From_Old_Binary’:
>     src/gmpy_binary.c:126: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_binary.c:127: error: ‘mpfr_t’ undeclared (first use in this function)
>     src/gmpy_binary.c:127: error: syntax error before ‘digit’
>     src/gmpy_binary.c:128: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_binary.c:141: error: ‘prec’ undeclared (first use in this function)
>     src/gmpy_binary.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_binary.c:193: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_binary.c:194: error: syntax error before ‘digit’
>     src/gmpy_binary.c:196: error: syntax error before ‘digit’
>     src/gmpy_binary.c:197: error: syntax error before ‘digit’
>     src/gmpy_binary.c:199: error: syntax error before ‘digit’
>     src/gmpy_binary.c:201: error: syntax error before ‘digit’
>     src/gmpy_binary.c:204: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_binary.c:206: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_binary.c:209: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:426: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2Pympz’:
>     src/gmpy2.c:429: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:433: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:437: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2Pyxmpz’:
>     src/gmpy2.c:440: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:444: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:448: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2Pympz’:
>     src/gmpy2.c:451: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:455: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:459: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2Pyxmpz’:
>     src/gmpy2.c:462: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:466: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:470: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2Pympq’:
>     src/gmpy2.c:473: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:451: error: ‘newob’ undeclared (first use in this function)src/gmpy2.c:477: error: syntax error before ‘)’ token
>     
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:482: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyInt2Pympz’:
>     src/gmpy2.c:485: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:493: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyInt2Pyxmpz’:
>     src/gmpy2.c:496: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:455: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:504: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyInt2Pympq’:
>     src/gmpy2.c:507: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:516: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyFloat2Pympz’:
>     src/gmpy2.c:519: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:459: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2Pyxmpz’:
>     src/gmpy2.c:462: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:539: error: syntax error before ‘*’ token
>     src/gmpy2.c:466: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘PyFloat2Pyxmpz’:
>     src/gmpy2.c:542: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:470: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2Pympq’:src/gmpy2.c: At top level:
>     
>     src/gmpy2.c:562: error: syntax error before ‘*’ token
>     src/gmpy2.c:473: error: ‘newob’ undeclared (first use in this function)src/gmpy2.c: In function ‘Pympz2Pympq’:
>     
>     src/gmpy2.c:565: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:569: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:573: error: syntax error before ‘*’ token
>     src/gmpy2.c:477: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘Pyxmpz2Pympq’:
>     src/gmpy2.c:576: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:580: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:584: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2Pympz’:
>     src/gmpy2.c:587: error: ‘newob’ undeclared (first use in this function)src/gmpy2.c: At top level:
>     
>     src/gmpy2.c:591: error: syntax error before ‘)’ tokensrc/gmpy2.c:482: error: syntax error before ‘*’ token
>     
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:595: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyInt2Pympz’:src/gmpy2.c: In function ‘Pympq2Pyxmpz’:
>     
>     src/gmpy2.c:598: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:485: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:602: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:609: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyLong2Pympz’:
>     src/gmpy2.c:612: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:615: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:619: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyLong2Pyxmpz’:
>     src/gmpy2.c:622: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:493: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyInt2Pyxmpz’:
>     src/gmpy2.c:496: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:625: error: syntax error before ‘)’ tokensrc/gmpy2.c:504: error: syntax error before ‘*’ token
>     
>     src/gmpy2.c: In function ‘PyInt2Pympq’:
>     src/gmpy2.c:507: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:516: error: syntax error before ‘*’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c: In function ‘PyFloat2Pympz’:
>     src/gmpy2.c:519: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:629: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyLong2Pympq’:
>     src/gmpy2.c:632: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:539: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyFloat2Pyxmpz’:
>     src/gmpy2.c:542: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:562: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2Pympq’:
>     src/gmpy2.c:565: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:569: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:573: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2Pympq’:
>     src/gmpy2.c:576: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:580: error: syntax error before ‘)’ token
>     src/gmpy2.c:642: error: syntax error before ‘*’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:584: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2Pympz’:
>     src/gmpy2.c:587: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘PyFloat2Pympq’:
>     src/gmpy2.c:591: error: syntax error before ‘)’ token
>     src/gmpy2.c:645: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:595: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2Pyxmpz’:
>     src/gmpy2.c:598: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:602: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:609: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyLong2Pympz’:
>     src/gmpy2.c:612: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:615: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:619: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyLong2Pyxmpz’:
>     src/gmpy2.c:622: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:625: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:629: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyLong2Pympq’:
>     src/gmpy2.c:632: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:642: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyFloat2Pympq’:
>     src/gmpy2.c:645: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:677: error: syntax error before ‘z’
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:677: error: syntax error before ‘z’
>     src/gmpy2.c: In function ‘mpz_set_PyStr’:
>     src/gmpy2.c:686: error: ‘s’ undeclared (first use in this function)src/gmpy2.c: In function ‘mpz_set_PyStr’:
>     src/gmpy2.c:686: error: ‘s’ undeclared (first use in this function)
>     src/gmpy2.c:709: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:731: error: ‘z’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     
>     src/gmpy2.c:740: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyStr2Pympz’:
>     src/gmpy2.c:743: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:755: error: syntax error before ‘*’ token
>     src/gmpy2.c:709: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘PyStr2Pyxmpz’:
>     src/gmpy2.c:758: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:731: error: ‘z’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:783: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyStr2Pympq’:
>     src/gmpy2.c:786: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:740: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyStr2Pympz’:
>     src/gmpy2.c:743: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:755: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘PyStr2Pyxmpz’:
>     src/gmpy2.c:758: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:783: error: syntax error before ‘*’ tokensrc/gmpy2.c:858: error: syntax error before ‘)’ token
>     
>     src/gmpy2.c: In function ‘PyStr2Pympq’:
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:898: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2PyLong’:
>     src/gmpy2.c:900: error: syntax error before ‘)’ token
>     src/gmpy2.c:786: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:900: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:904: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2PyLong’:
>     src/gmpy2.c:906: error: syntax error before ‘)’ token
>     src/gmpy2.c:906: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:910: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2PyLong’:
>     src/gmpy2.c:913: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy2.c:913: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:923: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz_To_Integer’:
>     src/gmpy2.c:928: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:936: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz_To_Integer’:
>     src/gmpy2.c:941: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:950: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2PyInt’:
>     src/gmpy2.c:953: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy2.c:953: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:964: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2PyFloat’:
>     src/gmpy2.c:966: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:972: error: syntax error before ‘*’ tokensrc/gmpy2.c:858: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:898: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2PyLong’:
>     src/gmpy2.c:900: error: syntax error before ‘)’ token
>     src/gmpy2.c:900: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:904: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2PyLong’:
>     src/gmpy2.c:906: error: syntax error before ‘)’ token
>     
>     src/gmpy2.c: In function ‘Pympq2PyFloat’:
>     src/gmpy2.c:974: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:986: error: syntax error before ‘z’
>     src/gmpy2.c: In function ‘mpz2binary’:
>     src/gmpy2.c:993: error: ‘z’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1022: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2binary’:
>     src/gmpy2.c:1024: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1028: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2binary’:
>     src/gmpy2.c:1030: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1040: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2binary’:
>     src/gmpy2.c:1048: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1097: error: syntax error before ‘z’
>     src/gmpy2.c: In function ‘mpz_ascii’:
>     src/gmpy2.c:1104: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:1119: error: ‘z’ undeclared (first use in this function)
>     src/gmpy2.c:1128: error: ‘option’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1208: error: syntax error before ‘z’
>     src/gmpy2.c: In function ‘xmpz_ascii’:
>     src/gmpy2.c:1215: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:1230: error: ‘z’ undeclared (first use in this function)
>     src/gmpy2.c:1239: error: ‘option’ undeclared (first use in this function)
>     src/gmpy2.c:906: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:910: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2PyLong’:
>     src/gmpy2.c:913: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy2.c:913: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1313: error: syntax error before ‘*’ token
>     src/gmpy2.c: At top level:src/gmpy2.c: In function ‘Pympz_ascii’:
>     
>     src/gmpy2.c:923: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz_To_Integer’:
>     src/gmpy2.c:928: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:936: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz_To_Integer’:
>     src/gmpy2.c:941: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:950: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2PyInt’:
>     src/gmpy2.c:953: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy2.c:953: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:964: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2PyFloat’:
>     src/gmpy2.c:966: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:972: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2PyFloat’:
>     src/gmpy2.c:974: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:986: error: syntax error before ‘z’
>     src/gmpy2.c: In function ‘mpz2binary’:
>     src/gmpy2.c:993: error: ‘z’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1022: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2binary’:
>     src/gmpy2.c:1024: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1028: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2binary’:
>     src/gmpy2.c:1030: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1040: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2binary’:
>     src/gmpy2.c:1048: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1097: error: syntax error before ‘z’
>     src/gmpy2.c: In function ‘mpz_ascii’:
>     src/gmpy2.c:1104: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:1119: error: ‘z’ undeclared (first use in this function)
>     src/gmpy2.c:1128: error: ‘option’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1208: error: syntax error before ‘z’
>     src/gmpy2.c: In function ‘xmpz_ascii’:
>     src/gmpy2.c:1215: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:1230: error: ‘z’ undeclared (first use in this function)
>     src/gmpy2.c:1239: error: ‘option’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1313: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz_ascii’:
>     src/gmpy2.c:1315: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c:1315: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:1315: error: ‘option’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1319: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz_ascii’:
>     src/gmpy2.c:1321: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c:1321: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:1321: error: ‘option’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1324: error: syntax error before ‘q’
>     src/gmpy2.c: In function ‘qden_1’:
>     src/gmpy2.c:1326: error: ‘q’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1330: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq_ascii’:
>     src/gmpy2.c:1335: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c:1335: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:1342: error: ‘option’ undeclared (first use in this function)
>     src/gmpy2.c:1315: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c:1315: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:1315: error: ‘option’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1319: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz_ascii’:
>     src/gmpy2.c:1321: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c:1321: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:1321: error: ‘option’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1324: error: syntax error before ‘q’
>     src/gmpy2.c: In function ‘qden_1’:
>     src/gmpy2.c:1326: error: ‘q’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1330: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq_ascii’:
>     src/gmpy2.c:1335: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c:1335: error: ‘base’ undeclared (first use in this function)
>     src/gmpy2.c:1342: error: ‘option’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1499: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘anynum2Pympq’:
>     src/gmpy2.c:1502: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:1506: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1554: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq_From_Rational’:
>     src/gmpy2.c:1557: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:1561: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1592: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘anynum2Pympz’:
>     src/gmpy2.c:1595: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:1596: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy2.c:1600: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1646: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘anynum2Pyxmpz’:
>     src/gmpy2.c:1649: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:1650: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1706: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz_From_Integer’:
>     src/gmpy2.c:1709: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:1713: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘clong_From_Integer’:
>     src/gmpy2.c:1754: error: syntax error before ‘)’ token
>     src/gmpy2.c:1755: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘ssize_t_From_Integer’:
>     src/gmpy2.c:1784: error: syntax error before ‘)’ token
>     src/gmpy2.c:1785: error: syntax error before ‘)’ token
>     src/gmpy2.c:1789: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘Pympz_convert_arg’:
>     src/gmpy2.c:1811: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:src/gmpy2.c: In function ‘Pympq_convert_arg’:
>     src/gmpy2.c:1833: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1852: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2str’:
>     src/gmpy2.c:1855: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1859: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2repr’:
>     
>     src/gmpy2.c:1862: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c:1499: error: syntax error before ‘*’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1867: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2str’:
>     src/gmpy2.c:1870: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘anynum2Pympq’:
>     src/gmpy2.c: At top level:src/gmpy2.c:1502: error: ‘newob’ undeclared (first use in this function)
>     
>     src/gmpy2.c:1874: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2repr’:
>     src/gmpy2.c:1877: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c:1506: error: syntax error before ‘)’ tokensrc/gmpy2.c: At top level:
>     src/gmpy2.c:1882: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2str’:
>     src/gmpy2.c:1885: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1889: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2repr’:
>     src/gmpy2.c:1892: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘Pygmpy_mpz’:
>     src/gmpy2.c:1909: error: ‘result’ undeclared (first use in this function)
>     
>     src/gmpy2.c: In function ‘Pygmpy_xmpz’:
>     src/gmpy2.c:1973: error: ‘result’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1554: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq_From_Rational’:
>     src/gmpy2.c:1557: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:1561: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘Pygmpy_mpq’:
>     src/gmpy2.c:2037: error: ‘result’ undeclared (first use in this function)
>     src/gmpy2.c:2037: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1592: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘anynum2Pympz’:
>     src/gmpy2.c:1595: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:1596: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy2.c:1600: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1646: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘anynum2Pyxmpz’:
>     src/gmpy2.c:1649: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:1650: error: ‘temp’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:2120:
>     src/gmpy_mpz.c: In function ‘Pympz_digits’:
>     src/gmpy_mpz.c:42: error: syntax error before ‘)’ token
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1706: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz_From_Integer’:
>     src/gmpy2.c:1709: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c:1713: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_digits’:
>     src/gmpy_mpz.c:55: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘clong_From_Integer’:
>     src/gmpy2.c:1754: error: syntax error before ‘)’ token
>     src/gmpy2.c:1755: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘ssize_t_From_Integer’:
>     src/gmpy2.c:1784: error: syntax error before ‘)’ token
>     src/gmpy2.c:1785: error: syntax error before ‘)’ token
>     src/gmpy2.c:1789: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘Pympz_convert_arg’:
>     src/gmpy2.c:1811: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_numdigits’:
>     src/gmpy_mpz.c:89: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘Pympq_convert_arg’:
>     src/gmpy2.c:1833: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1852: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2str’:
>     src/gmpy2.c:1855: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1859: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympz2repr’:
>     src/gmpy2.c:1862: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1867: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2str’:
>     src/gmpy2.c:1870: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1874: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pyxmpz2repr’:
>     src/gmpy2.c:1877: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1882: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2str’:
>     src/gmpy2.c:1885: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: At top level:
>     src/gmpy2.c:1889: error: syntax error before ‘*’ token
>     src/gmpy2.c: In function ‘Pympq2repr’:
>     src/gmpy2.c:1892: error: ‘self’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘Pygmpy_mpz’:
>     src/gmpy2.c:1909: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_bit_length’:
>     src/gmpy_mpz.c:107: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:110: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:111: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:114: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:115: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:123: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bit_mask’:
>     src/gmpy_mpz.c:139: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pyxmpz_xbit_mask’:
>     src/gmpy_mpz.c:171: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_bit_scan0’:
>     src/gmpy_mpz.c:221: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:223: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:232: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bit_scan1’:
>     src/gmpy_mpz.c:264: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:266: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:275: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_popcount’:
>     src/gmpy_mpz.c:291: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:294: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:296: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_bit_test’:
>     src/gmpy_mpz.c:323: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:343: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bit_test’:
>     src/gmpy_mpz.c:375: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_bit_clear’:
>     src/gmpy_mpz.c:393: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:415: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bit_clear’:
>     src/gmpy_mpz.c:432: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:447: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_bit_set’:
>     src/gmpy_mpz.c:464: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:486: error: syntax error before ‘)’ token
>     src/gmpy2.c: In function ‘Pygmpy_xmpz’:
>     src/gmpy2.c:1973: error: ‘result’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘Pygmpy_mpq’:
>     src/gmpy2.c:2037: error: ‘result’ undeclared (first use in this function)
>     src/gmpy2.c:2037: error: ‘temp’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:2120:
>     src/gmpy_mpz.c: In function ‘Pympz_digits’:
>     src/gmpy_mpz.c:42: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_digits’:
>     src/gmpy_mpz.c:55: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_numdigits’:
>     src/gmpy_mpz.c:89: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bit_length’:
>     src/gmpy_mpz.c:107: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:110: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:111: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:114: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:115: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:123: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bit_mask’:
>     src/gmpy_mpz.c:139: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_bit_set’:
>     src/gmpy_mpz.c:503: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:518: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_bit_flip’:
>     src/gmpy_mpz.c:533: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:555: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bit_flip’:
>     src/gmpy_mpz.c:572: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:587: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_iroot’:
>     src/gmpy_mpz.c:602: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_mpz.c:614: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:626: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_iroot_rem’:
>     src/gmpy_mpz.c:643: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz.c:643: error: ‘y’ undeclared (first use in this function)
>     src/gmpy_mpz.c:655: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:671: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_sign’:
>     src/gmpy_mpz.c:682: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:685: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:688: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:704: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_abs’:
>     src/gmpy_mpz.c:706: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:710: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:715: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_abs’:
>     src/gmpy_mpz.c:717: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:722: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_neg’:
>     src/gmpy_mpz.c:724: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:728: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:733: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_neg’:
>     src/gmpy_mpz.c:735: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:740: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_pos’:
>     src/gmpy_mpz.c:742: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:747: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_square’:
>     src/gmpy_mpz.c:755: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:755: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:761: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:761: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:764: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:764: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:772: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:772: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_pow’:
>     src/gmpy_mpz.c:786: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:786: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c:786: error: ‘tempe’ undeclared (first use in this function)
>     src/gmpy_mpz.c:786: error: ‘tempm’ undeclared (first use in this function)
>     src/gmpy_mpz.c:822: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz.c:822: error: syntax error before ‘mm’
>     src/gmpy_mpz.c:829: error: ‘mm’ undeclared (first use in this function)
>     src/gmpy_mpz.c:833: error: ‘base’ undeclared (first use in this function)
>     src/gmpy_mpz.c:857: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:875: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_nonzero’:
>     src/gmpy_mpz.c:877: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:881: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_nonzero’:
>     src/gmpy_mpz.c:883: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:889: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_com’:
>     src/gmpy_mpz.c: In function ‘Pyxmpz_xbit_mask’:
>     src/gmpy_mpz.c:171: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:891: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:895: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:895: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:900: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_com’:
>     src/gmpy_mpz.c:902: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_and’:
>     src/gmpy_mpz.c:941: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_ior’:
>     src/gmpy_mpz.c:942: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_bit_scan0’:
>     src/gmpy_mpz.c:221: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:223: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:232: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_xor’:
>     src/gmpy_mpz.c:943: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_rshift’:
>     src/gmpy_mpz.c:950: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:950: error: ‘tempa’ undeclared (first use in this function)
>     src/gmpy_mpz.c:950: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_bit_scan1’:
>     src/gmpy_mpz.c:264: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:266: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:275: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:965: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:982: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:986: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_popcount’:
>     src/gmpy_mpz.c:291: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:294: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_lshift’:
>     src/gmpy_mpz.c:1008: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:296: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1008: error: ‘tempa’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1008: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1023: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_bit_test’:
>     src/gmpy_mpz.c:323: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1040: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1044: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:343: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:1064: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_oct’:
>     src/gmpy_mpz.c:1066: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_bit_test’:
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:375: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1070: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_oct’:
>     src/gmpy_mpz.c:1072: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:1076: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_hex’:
>     src/gmpy_mpz.c:1078: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:1082: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_hex’:
>     src/gmpy_mpz.c: In function ‘Pygmpy_bit_clear’:
>     src/gmpy_mpz.c:1084: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:1089: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_hash’:
>     src/gmpy_mpz.c:1104: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pygmpy_gcd’:
>     src/gmpy_mpz.c:1120: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1120: error: ‘tempa’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1120: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1134: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1134: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_lcm’:
>     src/gmpy_mpz.c:1161: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1161: error: ‘tempa’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1161: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c:393: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1175: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1175: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:415: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bit_clear’:
>     src/gmpy_mpz.c:432: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:447: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_gcdext’:
>     src/gmpy_mpz.c:1203: error: ‘g’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1203: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1203: error: ‘t’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1203: error: ‘tempa’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1203: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pygmpy_bit_set’:
>     src/gmpy_mpz.c:464: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:486: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1226: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1226: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bit_set’:
>     src/gmpy_mpz.c:503: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:518: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_bit_flip’:
>     src/gmpy_mpz.c:533: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:555: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1241: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1241: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bit_flip’:
>     src/gmpy_mpz.c:572: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:587: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_iroot’:
>     src/gmpy_mpz.c:602: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pygmpy_divm’:
>     src/gmpy_mpz.c:1260: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1260: error: ‘num’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1260: error: ‘den’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1260: error: ‘mod’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1261: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1261: error: syntax error before ‘gcdz’
>     src/gmpy_mpz.c:614: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1293: error: ‘gcdz’ undeclared (first use in this function)
>     src/gmpy_mpz.c:626: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_fac’:
>     src/gmpy_mpz.c:1328: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pygmpy_fib’:
>     src/gmpy_mpz.c:1355: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_iroot_rem’:
>     src/gmpy_mpz.c:643: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz.c:643: error: ‘y’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1370: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_fib2’:
>     src/gmpy_mpz.c:1383: error: ‘fib1’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1383: error: ‘fib2’ undeclared (first use in this function)
>     src/gmpy_mpz.c:655: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:671: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_lucas’:
>     src/gmpy_mpz.c:1411: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pygmpy_lucas2’:
>     src/gmpy_mpz.c:1439: error: ‘luc1’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1439: error: ‘luc2’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_sign’:
>     src/gmpy_mpz.c:682: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:685: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:688: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_bincoef’:
>     src/gmpy_mpz.c:1473: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1489: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_isqrt’:
>     src/gmpy_mpz.c:1502: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1505: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1511: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1514: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1520: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_isqrt_rem’:
>     src/gmpy_mpz.c:1545: error: ‘root’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1545: error: ‘rem’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1550: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1567: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_remove’:
>     src/gmpy_mpz.c:1584: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1590: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1602: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1602: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_invert’:
>     src/gmpy_mpz.c:1618: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1618: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1618: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1632: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1637: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1637: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_hamdist’:
>     src/gmpy_mpz.c:1680: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1680: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_divexact’:
>     src/gmpy_mpz.c:1695: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1695: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1695: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1708: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1713: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1713: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1725: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_is_square’:
>     src/gmpy_mpz.c:1750: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1753: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1756: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_is_power’:
>     src/gmpy_mpz.c:1787: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1790: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1793: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:704: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_abs’:
>     src/gmpy_mpz.c:706: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:710: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:715: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_abs’:
>     src/gmpy_mpz.c:717: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:722: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_neg’:
>     src/gmpy_mpz.c:724: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:728: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:733: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_is_prime’:src/gmpy_mpz.c: In function ‘Pyxmpz_neg’:
>     
>     src/gmpy_mpz.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_next_prime’:
>     src/gmpy_mpz.c:1854: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1859: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1864: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:735: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:740: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_pos’:
>     src/gmpy_mpz.c: In function ‘Pympz_jacobi’:
>     src/gmpy_mpz.c:742: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1890: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:747: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_square’:
>     src/gmpy_mpz.c:1896: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1896: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:755: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:755: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:761: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:761: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:764: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:764: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:772: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:772: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_pow’:
>     src/gmpy_mpz.c:786: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:786: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c:786: error: ‘tempe’ undeclared (first use in this function)
>     src/gmpy_mpz.c:786: error: ‘tempm’ undeclared (first use in this function)
>     src/gmpy_mpz.c:822: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz.c:822: error: syntax error before ‘mm’
>     src/gmpy_mpz.c:829: error: ‘mm’ undeclared (first use in this function)
>     src/gmpy_mpz.c:833: error: ‘base’ undeclared (first use in this function)
>     src/gmpy_mpz.c:857: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:875: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_nonzero’:
>     src/gmpy_mpz.c:877: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:881: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_nonzero’:
>     src/gmpy_mpz.c:883: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:889: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_com’:
>     src/gmpy_mpz.c:891: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:895: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:895: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:900: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_com’:
>     src/gmpy_mpz.c:902: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_and’:
>     src/gmpy_mpz.c:941: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_ior’:
>     src/gmpy_mpz.c:942: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_xor’:
>     src/gmpy_mpz.c:943: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_rshift’:
>     src/gmpy_mpz.c:950: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:950: error: ‘tempa’ undeclared (first use in this function)
>     src/gmpy_mpz.c:950: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c:965: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:982: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:986: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_lshift’:
>     src/gmpy_mpz.c:1008: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1008: error: ‘tempa’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1008: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1023: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1040: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1044: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:1064: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_oct’:
>     src/gmpy_mpz.c:1066: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:1070: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_oct’:
>     src/gmpy_mpz.c:1072: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:1076: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_hex’:
>     src/gmpy_mpz.c:1078: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:1082: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_hex’:
>     src/gmpy_mpz.c:1084: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:1089: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_hash’:
>     src/gmpy_mpz.c:1104: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pygmpy_gcd’:
>     src/gmpy_mpz.c:1120: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1120: error: ‘tempa’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1120: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1134: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1134: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_lcm’:
>     src/gmpy_mpz.c:1161: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1161: error: ‘tempa’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1161: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1175: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1175: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_legendre’:
>     src/gmpy_mpz.c:1914: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1920: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1920: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_kronecker’:
>     src/gmpy_mpz.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1947: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1949: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1949: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1953: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1953: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_is_even’:
>     src/gmpy_mpz.c:1976: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1979: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1982: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_is_odd’:
>     src/gmpy_mpz.c:2010: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2013: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:2016: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_gcdext’:
>     src/gmpy_mpz.c:1203: error: ‘g’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1203: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1203: error: ‘t’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1203: error: ‘tempa’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1203: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pyxmpz_make_mpz’:
>     src/gmpy_mpz.c:2042: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2046: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:2047: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:2056: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_nbits’:
>     src/gmpy_mpz.c:2058: error: ‘obj’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:2062: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_subscript’:
>     src/gmpy_mpz.c:2064: error: ‘item’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2071: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1226: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1226: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:2094: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:2098: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1241: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1241: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_divm’:
>     src/gmpy_mpz.c:1260: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1260: error: ‘num’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1260: error: ‘den’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1260: error: ‘mod’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:1261: error: ‘mpz_t’ undeclared (first use in this function)src/gmpy_mpz.c:2111: error: syntax error before ‘*’ token
>     
>     src/gmpy_mpz.c:1261: error: syntax error before ‘gcdz’
>     src/gmpy_mpz.c: In function ‘Pyxmpz_assign_subscript’:
>     src/gmpy_mpz.c:2113: error: ‘item’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2120: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2122: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1293: error: ‘gcdz’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2164: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pygmpy_fac’:
>     src/gmpy_mpz.c: At top level:src/gmpy_mpz.c:1328: error: ‘result’ undeclared (first use in this function)
>     
>     src/gmpy_mpz.c:2205: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_nbits’:
>     src/gmpy_mpz.c:2207: error: ‘obj’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:2211: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_subscript’:
>     src/gmpy_mpz.c:2213: error: ‘item’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pygmpy_fib’:
>     src/gmpy_mpz.c:1355: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2220: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1370: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:2243: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:2247: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_fib2’:
>     src/gmpy_mpz.c:1383: error: ‘fib1’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1383: error: ‘fib2’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_format’:
>     src/gmpy_mpz.c:2392: error: syntax error before ‘)’ token
>     In file included from src/gmpy2.c:2121:
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_divmod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:46: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:46: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:46: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:67: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c:68: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_div_2exp’:
>     src/gmpy_mpz_divmod2exp.c:96: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:96: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:118: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_mod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:140: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:140: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:162: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_divmod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:192: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:192: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:192: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:213: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c:214: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_div_2exp’:
>     src/gmpy_mpz_divmod2exp.c:242: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:242: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:264: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_mod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:287: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:287: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:309: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c:317: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_divmod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:339: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:339: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:339: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:360: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c:361: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_lucas’:
>     src/gmpy_mpz.c:1411: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pygmpy_lucas2’:
>     src/gmpy_mpz.c:1439: error: ‘luc1’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1439: error: ‘luc2’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_bincoef’:
>     src/gmpy_mpz.c:1473: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1489: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_isqrt’:
>     src/gmpy_mpz.c:1502: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1505: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1511: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1514: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1520: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_isqrt_rem’:
>     src/gmpy_mpz.c:1545: error: ‘root’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1545: error: ‘rem’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1550: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1567: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_remove’:
>     src/gmpy_mpz.c:1584: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1590: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1602: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1602: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_invert’:
>     src/gmpy_mpz.c:1618: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1618: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1618: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1632: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1637: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1637: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_hamdist’:
>     src/gmpy_mpz.c:1680: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1680: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_div_2exp’:
>     src/gmpy_mpz_divmod2exp.c:388: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:388: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:409: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_mod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:432: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:432: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:454: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_pack’:
>     src/gmpy_mpz_divmod2exp.c:490: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:490: error: syntax error before ‘temp’
>     src/gmpy_mpz_divmod2exp.c:491: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:491: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:522: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:524: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_unpack’:
>     src/gmpy_mpz_divmod2exp.c:576: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:576: error: syntax error before ‘temp’
>     src/gmpy_mpz_divmod2exp.c:577: error: ‘mp_limb_t’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:578: error: ‘item’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:578: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:623: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:624: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:639: error: ‘extra’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:2122:
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_divmod’:
>     src/gmpy_mpz_divmod.c:42: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:42: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:42: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:42: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:54: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:61: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:61: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:75: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_div’:
>     src/gmpy_mpz_divmod.c:100: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:100: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:100: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:113: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:118: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:118: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:130: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_mod’:
>     src/gmpy_mpz_divmod.c:151: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:151: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:151: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:164: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:169: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:169: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:181: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_divmod’:
>     src/gmpy_mpz_divmod.c:210: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:210: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:210: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:210: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:222: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:229: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:229: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:243: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_div’:
>     src/gmpy_mpz_divmod.c:268: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:268: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:268: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:281: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:286: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:286: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:298: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_mod’:
>     src/gmpy_mpz_divmod.c:319: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:319: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:319: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:332: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:337: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:337: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:349: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pygmpy_divexact’:
>     src/gmpy_mpz.c:1695: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1695: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1695: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_divmod’:
>     src/gmpy_mpz_divmod.c:377: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:377: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:377: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:377: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1708: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1713: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1713: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:389: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1725: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:396: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:396: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:410: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_is_square’:
>     src/gmpy_mpz.c:1750: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1753: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1756: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_is_power’:
>     src/gmpy_mpz.c:1787: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_div’:
>     src/gmpy_mpz_divmod.c:435: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:435: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:435: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1790: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1793: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:448: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:453: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:453: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:465: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_mod’:
>     src/gmpy_mpz.c: In function ‘Pympz_is_prime’:
>     src/gmpy_mpz_divmod.c:486: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:486: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:486: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:499: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:504: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:504: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:516: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_next_prime’:
>     src/gmpy_mpz.c:1854: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1859: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1864: error: syntax error before ‘)’ token
>     In file included from src/gmpy2.c:2123:
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_add’:
>     src/gmpy_mpz_inplace.c:33: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:34: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:34: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:42: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:42: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:50: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:52: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:55: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:57: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_jacobi’:
>     src/gmpy_mpz.c:1890: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1896: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1896: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_sub’:
>     src/gmpy_mpz_inplace.c:69: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:70: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:70: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:78: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:78: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:86: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:88: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:91: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:93: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_mul’:
>     src/gmpy_mpz_inplace.c:105: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:106: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:106: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:114: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:114: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_legendre’:
>     src/gmpy_mpz.c:1914: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:122: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:124: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:127: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1920: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1920: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_floordiv’:
>     src/gmpy_mpz_inplace.c:144: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:145: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz.c: In function ‘Pympz_kronecker’:
>     src/gmpy_mpz.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1941: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1943: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1947: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1949: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1949: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1953: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1953: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_is_even’:
>     src/gmpy_mpz.c:1976: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:1979: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:1982: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_is_odd’:
>     src/gmpy_mpz.c:2010: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2013: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:2016: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_make_mpz’:
>     src/gmpy_mpz.c:2042: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2046: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:2047: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:2056: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_nbits’:
>     src/gmpy_mpz.c:2058: error: ‘obj’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:2062: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_subscript’:
>     src/gmpy_mpz.c:2064: error: ‘item’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2071: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2094: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:2098: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:2111: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pyxmpz_assign_subscript’:
>     src/gmpy_mpz.c:2113: error: ‘item’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2120: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2122: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2164: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:2205: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_nbits’:
>     src/gmpy_mpz.c:2207: error: ‘obj’ undeclared (first use in this function)
>     src/gmpy_mpz.c: At top level:
>     src/gmpy_mpz.c:2211: error: syntax error before ‘*’ token
>     src/gmpy_mpz.c: In function ‘Pympz_subscript’:
>     src/gmpy_mpz.c:2213: error: ‘item’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2220: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpz.c:2243: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c:2247: error: syntax error before ‘)’ token
>     src/gmpy_mpz.c: In function ‘Pympz_format’:
>     src/gmpy_mpz.c:2392: error: syntax error before ‘)’ token
>     In file included from src/gmpy2.c:2121:
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_divmod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:46: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:46: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:46: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:67: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c:68: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_div_2exp’:
>     src/gmpy_mpz_divmod2exp.c:96: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:96: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:118: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_mod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:140: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:140: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:162: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_divmod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:192: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:192: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:192: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:213: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c:214: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_div_2exp’:
>     src/gmpy_mpz_divmod2exp.c:242: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:242: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:264: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_mod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:287: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:287: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:309: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c:317: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_divmod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:339: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:339: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:339: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:360: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c:361: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_div_2exp’:
>     src/gmpy_mpz_divmod2exp.c:388: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:388: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:409: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_mod_2exp’:
>     src/gmpy_mpz_divmod2exp.c:432: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:432: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:454: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_pack’:
>     src/gmpy_mpz_divmod2exp.c:490: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:490: error: syntax error before ‘temp’
>     src/gmpy_mpz_divmod2exp.c:491: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:491: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:522: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:524: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_unpack’:
>     src/gmpy_mpz_divmod2exp.c:576: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:576: error: syntax error before ‘temp’
>     src/gmpy_mpz_divmod2exp.c:577: error: ‘mp_limb_t’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:578: error: ‘item’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:578: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:623: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:624: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod2exp.c:639: error: ‘extra’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:2122:
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_divmod’:
>     src/gmpy_mpz_divmod.c:42: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:42: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:42: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:42: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:54: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:61: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:61: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:75: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_div’:
>     src/gmpy_mpz_divmod.c:100: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:100: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:100: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:113: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:118: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:118: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:130: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_mod’:
>     src/gmpy_mpz_divmod.c:151: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:151: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:151: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:164: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:169: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:169: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:181: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_divmod’:
>     src/gmpy_mpz_divmod.c:210: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:210: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:210: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:210: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:222: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:229: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:229: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:243: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_div’:
>     src/gmpy_mpz_divmod.c:268: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:268: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:145: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:153: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:157: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:157: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:165: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:167: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:173: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:175: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_rem’:
>     src/gmpy_mpz_inplace.c:188: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:189: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:189: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:198: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:202: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:202: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:210: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:212: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:215: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:220: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_rshift’:
>     src/gmpy_mpz_inplace.c:232: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:240: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:245: error: syntax error before ‘)’ tokensrc/gmpy_mpz_divmod.c:268: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:281: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:286: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:286: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:298: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_mod’:
>     src/gmpy_mpz_divmod.c:319: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:319: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:319: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:332: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:337: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:337: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:349: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_divmod’:
>     src/gmpy_mpz_divmod.c:377: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:377: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:377: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:377: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:389: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:396: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:396: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:410: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_div’:
>     src/gmpy_mpz_divmod.c:435: error: ‘q’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:435: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:435: error: ‘tempy’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:448: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:453: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:453: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:465: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_mod’:
>     src/gmpy_mpz_divmod.c:486: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:486: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpz_divmod.c:486: error: ‘tempy’ undeclared (first use in this function)
>     
>     src/gmpy_mpz_divmod.c:499: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:504: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:504: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:250: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:251: error: syntax error before ‘)’ token
>     src/gmpy_mpz_divmod.c:516: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:263: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_lshift’:
>     src/gmpy_mpz_inplace.c:279: error: ‘rz’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:2123:
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_add’:
>     src/gmpy_mpz_inplace.c:33: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:34: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:287: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:34: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:42: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:292: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:42: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:297: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:298: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:50: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:52: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:55: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:57: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:310: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_sub’:
>     src/gmpy_mpz_inplace.c:69: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:70: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:70: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:78: error: syntax error before ‘)’ tokensrc/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_pow’:
>     
>     src/gmpy_mpz_inplace.c:326: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:326: error: ‘e’ undeclared (first use in this function)src/gmpy_mpz_inplace.c:78: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:86: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:88: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:91: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:93: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_mul’:
>     src/gmpy_mpz_inplace.c:105: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:106: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:106: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:114: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:114: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:122: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:124: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:127: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_floordiv’:
>     src/gmpy_mpz_inplace.c:144: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:145: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:145: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:153: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:354: error: syntax error before ‘)’ tokensrc/gmpy_mpz_inplace.c:157: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:157: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:165: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:167: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:173: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpz_inplace.c:175: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_rem’:
>     src/gmpy_mpz_inplace.c:188: error: ‘rz’ undeclared (first use in this function)In file included from src/gmpy2.c:2124:
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_add’:
>     src/gmpy_xmpz_inplace.c:35: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:35: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:44: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:46: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:46: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:49: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:49: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:51: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:51: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpz_inplace.c:189: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:189: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:198: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:202: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:202: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:210: error: ‘tempz’ undeclared (first use in this function)src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_sub’:
>     src/gmpy_xmpz_inplace.c:73: error: ‘mpz_t’ undeclared (first use in this function)
>     
>     src/gmpy_xmpz_inplace.c:73: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:212: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:215: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:220: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:81: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:83: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:83: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:86: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:86: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:88: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:88: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_rshift’:
>     src/gmpy_mpz_inplace.c:232: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:240: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:245: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_mul’:
>     src/gmpy_mpz_inplace.c:250: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:110: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:110: error: syntax error before ‘tempz’
>     src/gmpy_mpz_inplace.c:251: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:118: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:120: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:120: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:123: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:123: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_floordiv’:
>     src/gmpy_xmpz_inplace.c:147: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:147: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:155: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:157: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:157: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:163: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:163: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:165: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:165: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:166: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:166: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:173: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_rem’:
>     src/gmpy_xmpz_inplace.c:192: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:192: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:200: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:202: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:202: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:205: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:205: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:210: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:210: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:218: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_rshift’:
>     src/gmpy_xmpz_inplace.c:248: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:248: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:258: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:262: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:266: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:267: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:267: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_lshift’:
>     src/gmpy_xmpz_inplace.c:293: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:293: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:301: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:305: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:309: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:310: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:310: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_pow’:
>     src/gmpy_xmpz_inplace.c:325: error: ‘e’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:354: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:354: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_and’:
>     src/gmpy_xmpz_inplace.c:366: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:366: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:377: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:391: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:391: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_xor’:
>     src/gmpy_xmpz_inplace.c:407: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:407: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:418: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:432: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:432: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:263: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_ior’:
>     src/gmpy_xmpz_inplace.c:448: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:448: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_lshift’:
>     src/gmpy_mpz_inplace.c:279: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:459: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:287: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:473: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:473: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:292: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:297: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:298: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:310: error: syntax error before ‘)’ token
>     In file included from src/gmpy2.c:2125:
>     src/gmpy_mpq.c: In function ‘Pympq_digits’:
>     src/gmpy_mpq.c:42: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_pow’:
>     src/gmpy_mpz_inplace.c:326: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpz_inplace.c:326: error: ‘e’ undeclared (first use in this function)
>     src/gmpy_mpq.c: In function ‘Pympq_sign’:
>     src/gmpy_mpq.c:51: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpq.c:54: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:57: error: syntax error before ‘)’ token
>     src/gmpy_mpz_inplace.c:354: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: In function ‘Pympq_numer’:
>     src/gmpy_mpq.c:79: error: ‘result’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:2124:
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_add’:
>     src/gmpy_xmpz_inplace.c:35: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:35: error: syntax error before ‘tempz’
>     src/gmpy_mpq.c:86: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:44: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:46: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:92: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_getnumer’:
>     src/gmpy_mpq.c:94: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpq.c:97: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:97: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpq.c: In function ‘Pympq_denom’:
>     src/gmpy_mpq.c:108: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpq.c:115: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:121: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_getdenom’:
>     src/gmpy_mpq.c:123: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpq.c:126: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:126: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpq.c: In function ‘isOne’:
>     src/gmpy_mpq.c:140: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:141: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:144: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:147: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:156: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:156: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_xmpz_inplace.c:46: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:49: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:49: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:51: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:51: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: In function ‘Pympq_qdiv’:
>     src/gmpy_mpq.c:186: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_sub’:
>     src/gmpy_xmpz_inplace.c:73: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpq.c:193: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:73: error: syntax error before ‘tempz’
>     src/gmpy_mpq.c:193: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:81: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpq.c:220: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:232: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:239: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:239: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:282: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_neg’:
>     src/gmpy_mpq.c:282: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpq.c:282: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:285: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_abs’:
>     src/gmpy_mpq.c:287: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpq.c:290: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:296: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_pos’:
>     src/gmpy_mpq.c:298: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpq.c: In function ‘Pympq_square’:
>     src/gmpy_mpq.c:305: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpq.c:305: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpq.c:311: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:311: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:314: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:314: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:322: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:322: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: In function ‘Pympq_pow’:
>     src/gmpy_mpq.c:332: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_mpq.c:332: error: ‘tempbq’ undeclared (first use in this function)
>     src/gmpy_mpq.c:333: error: ‘tempez’ undeclared (first use in this function)
>     src/gmpy_mpq.c:335: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_mpq.c:335: error: ‘tempbf’ undeclared (first use in this function)
>     src/gmpy_mpq.c:335: error: ‘tempef’ undeclared (first use in this function)
>     src/gmpy_mpq.c:414: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:426: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_nonzero’:
>     src/gmpy_mpq.c:428: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:432: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_hash’:
>     src/gmpy_mpq.c:475: error: ‘self’ undeclared (first use in this function)
>     In file included from src/gmpy2.c:2128:
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:34: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:35: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘Pympfr2Pympfr’:
>     src/gmpy_mpfr.c:37: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:40: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:41: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:41: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:43: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:44: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:48: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:49: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘PyFloat2Pympfr’:
>     src/gmpy_mpfr.c:51: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:54: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:61: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:62: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:66: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:67: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘Pympz2Pympfr’:
>     src/gmpy_mpfr.c:69: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:72: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:73: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:73: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:74: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:78: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:79: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘Pyxmpz2Pympfr’:
>     src/gmpy_mpfr.c:81: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:84: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:85: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:85: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:86: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:90: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2Pympz’:
>     src/gmpy_mpfr.c:93: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:97: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:102: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:113: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2Pyxmpz’:
>     src/gmpy_mpfr.c:116: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:120: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:125: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:131: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:131: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:136: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2Pympq’:
>     src/gmpy_mpfr.c:139: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:142: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:143: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘Pympq2Pympfr’:
>     src/gmpy_mpfr.c:145: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:148: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:149: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:149: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:150: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:154: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:155: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘PyLong2Pympfr’:
>     src/gmpy_mpfr.c:157: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:158: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:162: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:168: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:169: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘PyInt2Pympfr’:
>     src/gmpy_mpfr.c:171: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:174: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:175: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:176: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:181: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2PyInt’:
>     src/gmpy_mpfr.c:184: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:184: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:194: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:195: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘PyStr2Pympfr’:
>     src/gmpy_mpfr.c:197: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:199: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:199: error: syntax error before ‘prec’
>     src/gmpy_mpfr.c:205: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:219: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:220: error: ‘prec’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:222: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:224: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:242: error: ‘base’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:243: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:254: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2PyLong’:
>     src/gmpy_mpfr.c:257: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:257: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:267: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2PyFloat’:
>     src/gmpy_mpfr.c:269: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:269: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:302: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2binary’:
>     src/gmpy_mpfr.c:308: error: ‘mpfr_exp_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:308: error: syntax error before ‘the_exp’
>     src/gmpy_mpfr.c:313: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:325: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:332: error: ‘the_exp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:333: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:333: warning: assignment makes pointer from integer without a cast
>     src/gmpy_mpfr.c:345: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:405: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_ascii’:
>     src/gmpy_mpfr.c:409: error: ‘mpfr_exp_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:409: error: syntax error before ‘the_exp’
>     src/gmpy_mpfr.c:413: error: ‘base’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:417: error: ‘digits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:423: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:443: error: ‘the_exp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:443: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:443: warning: assignment makes pointer from integer without a cast
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:463: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:464: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘Pympfr_From_Real’:
>     src/gmpy_mpfr.c:466: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:467: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:469: error: ‘obj’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:469: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:469: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:472: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:472: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:473: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:483: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:484: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:484: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:485: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:486: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:83: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:83: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:86: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:86: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:88: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:88: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_mul’:
>     src/gmpy_xmpz_inplace.c:110: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:110: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:118: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:120: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:120: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:123: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:123: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_floordiv’:
>     src/gmpy_xmpz_inplace.c:147: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:147: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:155: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:157: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:157: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:163: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:163: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:165: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:165: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:166: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:166: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:173: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_rem’:
>     src/gmpy_xmpz_inplace.c:192: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:192: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:200: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:202: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:202: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:205: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:205: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:210: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:210: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:218: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_rshift’:
>     src/gmpy_xmpz_inplace.c:248: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:248: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:258: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:262: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:266: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:267: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:267: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_lshift’:
>     src/gmpy_xmpz_inplace.c:293: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:293: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:301: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:305: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:309: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:310: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:310: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_pow’:
>     src/gmpy_xmpz_inplace.c:325: error: ‘e’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:354: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:354: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_and’:
>     src/gmpy_xmpz_inplace.c:366: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:366: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:377: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:391: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_convert_arg’:
>     src/gmpy_xmpz_inplace.c:391: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:545: error: ‘newob’ undeclared (first use in this function)
>     
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:563: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2str’:
>     src/gmpy_mpfr.c:569: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:569: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_xor’:
>     src/gmpy_xmpz_inplace.c:407: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:407: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:418: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:582: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2repr’:src/gmpy_xmpz_inplace.c:432: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:432: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:588: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:588: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:591: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_ior’:
>     src/gmpy_xmpz_inplace.c:448: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:448: error: syntax error before ‘tempz’
>     src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pygmpy_mpfr’:
>     src/gmpy_mpfr.c:623: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:628: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:628: error: syntax error before ‘bits’src/gmpy_xmpz_inplace.c:459: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_xmpz_inplace.c:473: error: syntax error before ‘)’ token
>     src/gmpy_xmpz_inplace.c:473: error: syntax error before ‘)’ token
>     In file included from src/gmpy2.c:2125:
>     src/gmpy_mpq.c: In function ‘Pympq_digits’:
>     src/gmpy_mpq.c:42: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: In function ‘Pympq_sign’:
>     
>     src/gmpy_mpq.c:51: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpq.c:54: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:57: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:644: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpq.c: In function ‘Pympq_numer’:
>     src/gmpy_mpq.c:79: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpq.c:86: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:92: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_getnumer’:
>     src/gmpy_mpq.c:94: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpq.c:97: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:97: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpq.c: In function ‘Pympq_denom’:
>     src/gmpy_mpq.c:108: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpq.c:115: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:121: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_getdenom’:
>     src/gmpy_mpq.c:123: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpq.c:126: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:126: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpq.c: In function ‘isOne’:
>     src/gmpy_mpq.c:140: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:141: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:144: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:147: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:156: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:156: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c: In function ‘Pympq_qdiv’:
>     src/gmpy_mpq.c:186: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:193: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:193: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:220: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:232: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:239: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:239: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:282: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_neg’:
>     src/gmpy_mpq.c:282: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpq.c:282: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpq.c:285: error: syntax error before ‘*’ token
>     src/gmpy_mpq.c: In function ‘Pympq_abs’:
>     src/gmpy_mpq.c:287: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpq.c:290: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:682: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_getprec_attrib’:
>     src/gmpy_mpfr.c:684: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:690: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_getrc_attrib’:
>     src/gmpy_mpfr.c:692: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:698: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_getimag_attrib’:
>     src/gmpy_mpfr.c:700: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:710: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_getreal_attrib’:
>     src/gmpy_mpfr.c:712: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:718: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_nonzero’:
>     src/gmpy_mpfr.c:720: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:739: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_pos’:
>     src/gmpy_mpfr.c:741: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:743: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:749: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:756: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:758: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:758: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_get_max_precision’:
>     src/gmpy_mpfr.c:798: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: In function ‘Pympfr_get_exp’:
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:814: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:815: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:818: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:823: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:824: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_set_exp’:
>     src/gmpy_mpfr.c:845: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:857: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:860: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_set_sign’:
>     src/gmpy_mpfr.c:878: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:899: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:899: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:900: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_copy_sign’:
>     src/gmpy_mpfr.c:915: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:928: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:928: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_div_2exp’:
>     src/gmpy_mpfr.c:942: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:955: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:955: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_mul_2exp’:
>     src/gmpy_mpfr.c:968: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:982: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c: At top level:src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpq.c:296: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c: In function ‘Pympq_pos’:src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c:298: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c: In function ‘Pympq_square’:
>     src/gmpy_mpq.c:305: error: ‘tempx’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c:305: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c:311: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:311: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:314: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:314: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:322: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c:322: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_set_nan’:
>     src/gmpy_mpfr.c:994: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: In function ‘Pympfr_set_inf’:
>     src/gmpy_mpfr.c:1008: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: In function ‘Pympfr_set_zero’:
>     src/gmpy_mpfr.c:1028: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_signed’:
>     src/gmpy_mpfr.c:1064: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_nan’:
>     src/gmpy_mpfr.c:1104: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_inf’:
>     src/gmpy_mpfr.c:1114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_number’:
>     src/gmpy_mpfr.c:1126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_zero’:
>     src/gmpy_mpfr.c:1136: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_regular’:
>     src/gmpy_mpfr.c:1146: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_integer’:
>     src/gmpy_mpfr.c:1156: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_digits’:
>     src/gmpy_mpfr.c:1187: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_f2q’:
>     src/gmpy_mpfr.c:1204: error: ‘err’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1205: error: ‘fself’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1210: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1210: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1212: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:1217: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘f2q_internal’:
>     src/gmpy_mpfr.c:1219: error: ‘res’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1221: error: ‘mpfr_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1221: error: syntax error before ‘f’
>     src/gmpy_mpfr.c:1224: error: ‘err’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1230: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1233: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1234: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1234: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1239: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1240: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1241: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1245: error: ‘minerr’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1246: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1249: error: ‘f’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1252: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1256: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1259: error: ‘al’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1261: error: ‘a’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1263: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1265: error: ‘r1’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1266: error: ‘r2’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1268: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1269: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1270: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1271: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1272: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1273: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1274: error: ‘curerr’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1275: error: ‘newerr’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1276: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1278: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1279: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1283: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1284: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1287: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1288: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1289: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1290: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1298: error: ‘mayz’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1300: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1301: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1301: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1303: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1303: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1306: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1307: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:1326: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_hash’:
>     src/gmpy_mpfr.c:1375: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1377: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr2_pow’:
>     src/gmpy_mpfr.c:1387: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1387: error: ‘tempe’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1387: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1406: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1407: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1415: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1416: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1416: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_const_pi’:
>     src/gmpy_mpfr.c:1448: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_const_euler’:
>     src/gmpy_mpfr.c:1454: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_const_log2’:
>     src/gmpy_mpfr.c:1460: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_const_catalan’:
>     src/gmpy_mpfr.c:1466: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sqrt’:
>     src/gmpy_mpfr.c:1477: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: In function ‘Pympq_pow’:
>     src/gmpy_mpq.c:332: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_mpq.c:332: error: ‘tempbq’ undeclared (first use in this function)
>     src/gmpy_mpq.c:333: error: ‘tempez’ undeclared (first use in this function)
>     src/gmpy_mpq.c:335: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_mpq.c:335: error: ‘tempbf’ undeclared (first use in this function)
>     src/gmpy_mpq.c:335: error: ‘tempef’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1485: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1486: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c:414: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rec_sqrt’:
>     src/gmpy_mpfr.c:1498: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ tokensrc/gmpy_mpq.c:426: error: syntax error before ‘*’ token
>     
>     src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpq.c: In function ‘Pympq_nonzero’:
>     src/gmpy_mpq.c:428: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1505: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1506: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1507: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1514: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1515: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_root’:
>     src/gmpy_mpq.c: At top level:
>     src/gmpy_mpfr.c:1528: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpq.c:432: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpq.c: In function ‘Pympq_hash’:src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpq.c:475: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
>     In file included from src/gmpy2.c:2128:
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:34: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:35: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘Pympfr2Pympfr’:
>     src/gmpy_mpfr.c:37: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1541: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:40: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1542: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:41: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:41: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:43: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:44: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_round’:
>     src/gmpy_mpfr.c:1554: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1554: error: syntax error before ‘prec’
>     src/gmpy_mpfr.c:1555: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: ‘prec’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:48: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:49: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘PyFloat2Pympfr’:
>     src/gmpy_mpfr.c:51: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:54: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:61: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:62: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:66: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:67: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘Pympz2Pympfr’:
>     src/gmpy_mpfr.c:69: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:72: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1560: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1566: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1566: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1567: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1568: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1570: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:73: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:73: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:74: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:78: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:79: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘Pyxmpz2Pympfr’:
>     src/gmpy_mpfr.c:81: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:84: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:85: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:85: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:86: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:90: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2Pympz’:
>     src/gmpy_mpfr.c:93: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:97: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:102: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:113: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2Pyxmpz’:
>     src/gmpy_mpfr.c:116: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:120: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:125: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:131: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:131: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:136: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2Pympq’:
>     src/gmpy_mpfr.c:139: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:142: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:143: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘Pympq2Pympfr’:
>     src/gmpy_mpfr.c:145: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:148: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: In function ‘Pympfr_reldiff’:
>     src/gmpy_mpfr.c:1583: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:149: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:149: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:150: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: At top level:src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:154: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:155: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c:1586: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘PyLong2Pympfr’:
>     src/gmpy_mpfr.c:157: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1586: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1597: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1597: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1598: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sign’:
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1613: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1616: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:1650: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_abs’:
>     src/gmpy_mpfr.c:1650: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1650: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:1651: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_neg’:
>     src/gmpy_mpfr.c:1651: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1651: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_ceil’:
>     src/gmpy_mpfr.c:1673: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:158: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:162: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:168: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:169: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘PyInt2Pympfr’:
>     src/gmpy_mpfr.c:171: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:174: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:175: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:176: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:181: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2PyInt’:
>     src/gmpy_mpfr.c:184: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:184: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:194: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:195: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘PyStr2Pympfr’:
>     src/gmpy_mpfr.c:197: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:199: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:199: error: syntax error before ‘prec’
>     src/gmpy_mpfr.c:205: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:219: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:220: error: ‘prec’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:222: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:224: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:242: error: ‘base’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:243: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:254: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2PyLong’:
>     src/gmpy_mpfr.c:257: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:257: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:267: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2PyFloat’:
>     src/gmpy_mpfr.c:269: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:269: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:302: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2binary’:
>     src/gmpy_mpfr.c:308: error: ‘mpfr_exp_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:308: error: syntax error before ‘the_exp’
>     src/gmpy_mpfr.c:313: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:325: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:332: error: ‘the_exp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:333: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:333: warning: assignment makes pointer from integer without a cast
>     src/gmpy_mpfr.c:345: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:405: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_ascii’:
>     src/gmpy_mpfr.c:409: error: ‘mpfr_exp_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:409: error: syntax error before ‘the_exp’
>     src/gmpy_mpfr.c:413: error: ‘base’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:417: error: ‘digits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:423: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:443: error: ‘the_exp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:443: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:443: warning: assignment makes pointer from integer without a cast
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:463: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:464: error: syntax error before ‘mpfr_prec_t’
>     src/gmpy_mpfr.c: In function ‘Pympfr_From_Real’:
>     src/gmpy_mpfr.c:466: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:467: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:469: error: ‘obj’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:469: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:469: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:472: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:472: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:473: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:483: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:484: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:484: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:485: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:486: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_convert_arg’:
>     src/gmpy_mpfr.c:545: error: ‘newob’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:563: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2str’:
>     src/gmpy_mpfr.c:569: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:569: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:582: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr2repr’:
>     src/gmpy_mpfr.c:588: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:588: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pygmpy_mpfr’:
>     src/gmpy_mpfr.c:623: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:628: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:628: error: syntax error before ‘bits’
>     src/gmpy_mpfr.c:644: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:682: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_getprec_attrib’:
>     src/gmpy_mpfr.c:684: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:690: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_getrc_attrib’:
>     src/gmpy_mpfr.c:692: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:698: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_getimag_attrib’:
>     src/gmpy_mpfr.c:700: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:710: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_getreal_attrib’:
>     src/gmpy_mpfr.c:712: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:718: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_nonzero’:
>     src/gmpy_mpfr.c:720: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:739: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_pos’:
>     src/gmpy_mpfr.c:741: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:743: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:749: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:756: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:758: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:758: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_get_max_precision’:
>     src/gmpy_mpfr.c:798: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: In function ‘Pympfr_get_exp’:
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:814: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:815: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:818: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:823: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:824: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_set_exp’:
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_floor’:
>     src/gmpy_mpfr.c:1683: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_trunc’:
>     src/gmpy_mpfr.c:1695: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_round2’:
>     src/gmpy_mpfr.c:1704: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1710: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1710: error: called object ‘mpfr_round’ is not a function
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rint’:
>     src/gmpy_mpfr.c:1731: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rint_ceil’:
>     src/gmpy_mpfr.c:1739: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rint_floor’:
>     src/gmpy_mpfr.c:1747: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rint_round’:
>     src/gmpy_mpfr.c:1755: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rint_trunc’:
>     src/gmpy_mpfr.c:1762: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_frac’:
>     src/gmpy_mpfr.c:1768: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:845: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:857: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:860: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_set_sign’:
>     src/gmpy_mpfr.c:878: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:899: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:899: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:900: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_copy_sign’:
>     src/gmpy_mpfr.c:915: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:928: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:928: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_div_2exp’:
>     src/gmpy_mpfr.c:942: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:955: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:955: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c: In function ‘Pympfr_mul_2exp’:
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_modf’:
>     src/gmpy_mpfr.c:1778: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1778: error: ‘c’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1791: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1792: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1797: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1797: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1798: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1798: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sqr’:
>     src/gmpy_mpfr.c:1819: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:968: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_cbrt’:
>     src/gmpy_mpfr.c:981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:982: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_log’:
>     src/gmpy_mpfr.c:1831: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_set_nan’:
>     src/gmpy_mpfr.c:994: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: In function ‘Pympfr_set_inf’:
>     src/gmpy_mpfr.c:1008: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: In function ‘Pympfr_set_zero’:
>     src/gmpy_mpfr.c:1028: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_signed’:
>     src/gmpy_mpfr.c:1064: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_nan’:
>     src/gmpy_mpfr.c:1104: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_inf’:
>     src/gmpy_mpfr.c:1114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_number’:
>     src/gmpy_mpfr.c:1126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_zero’:
>     src/gmpy_mpfr.c:1136: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_regular’:
>     src/gmpy_mpfr.c:1146: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_integer’:
>     src/gmpy_mpfr.c:1156: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_digits’:
>     src/gmpy_mpfr.c:1187: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_f2q’:
>     src/gmpy_mpfr.c:1204: error: ‘err’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1205: error: ‘fself’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1210: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1210: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1212: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:1217: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘f2q_internal’:
>     src/gmpy_mpfr.c:1219: error: ‘res’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1221: error: ‘mpfr_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1221: error: syntax error before ‘f’
>     src/gmpy_mpfr.c:1224: error: ‘err’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1230: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1233: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1234: error: ‘bits’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1234: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1239: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1240: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1241: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1245: error: ‘minerr’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1246: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1249: error: ‘f’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1252: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1256: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1259: error: ‘al’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1261: error: ‘a’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1263: error: ‘temp’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1265: error: ‘r1’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1266: error: ‘r2’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1268: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1269: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1270: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1271: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1272: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1273: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1274: error: ‘curerr’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1275: error: ‘newerr’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1276: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1278: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1279: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1283: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1284: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1287: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1288: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1289: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1290: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1298: error: ‘mayz’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1300: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1301: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1301: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1303: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1303: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1306: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1307: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:1326: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_hash’:
>     src/gmpy_mpfr.c:1375: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1377: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr2_pow’:
>     src/gmpy_mpfr.c:1387: error: ‘tempb’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1387: error: ‘tempe’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1387: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1406: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1407: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1415: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1416: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1416: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_const_pi’:
>     src/gmpy_mpfr.c:1448: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_const_euler’:
>     src/gmpy_mpfr.c:1454: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_const_log2’:
>     src/gmpy_mpfr.c:1460: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_const_catalan’:
>     src/gmpy_mpfr.c:1466: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sqrt’:
>     src/gmpy_mpfr.c:1477: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1485: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1486: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rec_sqrt’:
>     src/gmpy_mpfr.c:1498: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1505: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1506: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1507: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1514: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1515: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_root’:
>     src/gmpy_mpfr.c:1528: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1541: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1542: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_round’:
>     src/gmpy_mpfr.c:1554: error: ‘mpfr_prec_t’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1554: error: syntax error before ‘prec’
>     src/gmpy_mpfr.c:1555: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: ‘prec’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1560: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1566: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1566: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1567: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1568: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1570: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_reldiff’:
>     src/gmpy_mpfr.c:1583: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_log2’:
>     src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1837: error: ‘result’ undeclared (first use in this function)
>     
>     src/gmpy_mpfr.c:1586: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1586: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1597: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1597: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:1598: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sign’:
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_log10’:
>     src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1613: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1616: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: At top level:
>     src/gmpy_mpfr.c:1650: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_abs’:
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1650: error: ‘r’ undeclared (first use in this function)
>     
>     src/gmpy_mpfr.c:1650: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_exp’:
>     src/gmpy_mpfr.c:1849: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: At top level:src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: syntax error before ‘*’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_exp2’:src/gmpy_mpfr.c: In function ‘Pympfr_neg’:
>     
>     src/gmpy_mpfr.c:1855: error: ‘result’ undeclared (first use in this function)src/gmpy_mpfr.c:1651: error: ‘r’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1651: error: ‘x’ undeclared (first use in this function)
>     
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_exp10’:
>     src/gmpy_mpfr.c:1861: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sin’:
>     src/gmpy_mpfr.c:1867: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_cos’:
>     src/gmpy_mpfr.c:1873: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_tan’:
>     src/gmpy_mpfr.c:1879: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_ceil’:
>     src/gmpy_mpfr.c:1673: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c: In function ‘Pympfr_sec’:
>     src/gmpy_mpfr.c:1885: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_floor’:
>     src/gmpy_mpfr.c:1683: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_csc’:
>     src/gmpy_mpfr.c:1891: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_trunc’:
>     src/gmpy_mpfr.c:1695: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_cot’:
>     src/gmpy_mpfr.c:1897: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_acos’:
>     src/gmpy_mpfr.c:1903: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_asin’:
>     src/gmpy_mpfr.c:1909: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_atan’:
>     src/gmpy_mpfr.c:1915: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_cosh’:
>     src/gmpy_mpfr.c:1921: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_sinh’:
>     src/gmpy_mpfr.c:1927: error: ‘result’ undeclared (first use in this function)src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c: In function ‘Pympfr_round2’:
>     src/gmpy_mpfr.c:1704: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1710: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1710: error: called object ‘mpfr_round’ is not a function
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rint’:
>     src/gmpy_mpfr.c:1731: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rint_ceil’:
>     src/gmpy_mpfr.c:1739: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rint_floor’:
>     src/gmpy_mpfr.c:1747: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rint_round’:
>     src/gmpy_mpfr.c:1755: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_rint_trunc’:
>     src/gmpy_mpfr.c:1762: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_frac’:
>     src/gmpy_mpfr.c:1768: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_modf’:
>     src/gmpy_mpfr.c:1778: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1778: error: ‘c’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1791: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1792: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1797: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1797: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1798: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1798: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_tanh’:src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1933: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sqr’:
>     src/gmpy_mpfr.c:1819: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_sech’:
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_cbrt’:
>     src/gmpy_mpfr.c:1825: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_csch’:
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_coth’:
>     src/gmpy_mpfr.c:1951: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_acosh’:src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1957: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_asinh’:
>     src/gmpy_mpfr.c:1963: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_atanh’:
>     src/gmpy_mpfr.c:1969: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_log1p’:
>     src/gmpy_mpfr.c:1975: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_expm1’:
>     src/gmpy_mpfr.c:1981: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_eint’:
>     src/gmpy_mpfr.c:1987: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_li2’:
>     src/gmpy_mpfr.c:1993: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_log’:
>     src/gmpy_mpfr.c:1831: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_log2’:
>     src/gmpy_mpfr.c:1837: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_log10’:
>     src/gmpy_mpfr.c:1843: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_exp’:
>     src/gmpy_mpfr.c:1849: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_exp2’:
>     src/gmpy_mpfr.c:1855: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_exp10’:
>     src/gmpy_mpfr.c:1861: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sin’:
>     src/gmpy_mpfr.c:1867: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_gamma’:
>     src/gmpy_mpfr.c:1999: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_cos’:
>     src/gmpy_mpfr.c:1873: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_tan’:
>     src/gmpy_mpfr.c:1879: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sec’:
>     src/gmpy_mpfr.c:1885: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_csc’:
>     src/gmpy_mpfr.c:1891: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_cot’:
>     src/gmpy_mpfr.c:1897: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_lngamma’:
>     src/gmpy_mpfr.c:2005: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_acos’:
>     src/gmpy_mpfr.c:1903: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_lgamma’:
>     src/gmpy_mpfr.c:2016: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_asin’:src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1909: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2027: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2028: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2029: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2029: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_atan’:
>     src/gmpy_mpfr.c:1915: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_cosh’:
>     src/gmpy_mpfr.c:1921: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sinh’:
>     src/gmpy_mpfr.c:1927: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_tanh’:
>     src/gmpy_mpfr.c:1933: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sech’:
>     src/gmpy_mpfr.c:1939: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_digamma’:
>     src/gmpy_mpfr.c:2051: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_zeta’:
>     src/gmpy_mpfr.c:2057: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_erf’:
>     src/gmpy_mpfr.c:2063: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_erfc’:
>     src/gmpy_mpfr.c:2069: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_j0’:
>     src/gmpy_mpfr.c:2075: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_j1’:
>     src/gmpy_mpfr.c:2081: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_jn’:
>     src/gmpy_mpfr.c:2090: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2099: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2100: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_y0’:
>     src/gmpy_mpfr.c:2108: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_y1’:
>     src/gmpy_mpfr.c:2114: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_yn’:
>     src/gmpy_mpfr.c:2123: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_csch’:
>     src/gmpy_mpfr.c:1945: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_coth’:
>     src/gmpy_mpfr.c:1951: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2132: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2133: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_ai’:
>     src/gmpy_mpfr.c:2141: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_acosh’:
>     src/gmpy_mpfr.c:1957: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_add’:
>     src/gmpy_mpfr.c:2150: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_asinh’:
>     src/gmpy_mpfr.c:1963: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2159: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2160: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2160: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_atanh’:
>     src/gmpy_mpfr.c:1969: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_sub’:
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2171: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2174: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2174: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2180: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2181: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2181: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_log1p’:
>     src/gmpy_mpfr.c:1975: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_mul’:
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2192: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2195: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2195: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2201: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_expm1’:
>     src/gmpy_mpfr.c:1981: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2202: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2202: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_div’:
>     src/gmpy_mpfr.c:2213: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_eint’:
>     src/gmpy_mpfr.c:1987: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2216: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:2216: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2221: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2222: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2223: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2230: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2231: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2231: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_fmod’:
>     src/gmpy_mpfr.c:2242: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2245: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2245: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2250: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2251: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2252: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2259: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2260: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_li2’:
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_gamma’:
>     src/gmpy_mpfr.c:1999: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_lngamma’:
>     src/gmpy_mpfr.c:2005: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_lgamma’:
>     src/gmpy_mpfr.c:2016: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2027: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2028: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2029: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2029: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_digamma’:
>     src/gmpy_mpfr.c:2051: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_remainder’:
>     src/gmpy_mpfr.c:2272: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2275: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2275: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2280: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2281: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2282: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2289: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2290: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_zeta’:
>     src/gmpy_mpfr.c:2290: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_erf’:
>     src/gmpy_mpfr.c:2063: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_erfc’:
>     src/gmpy_mpfr.c:2069: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_j0’:
>     src/gmpy_mpfr.c:2075: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_j1’:
>     src/gmpy_mpfr.c:2081: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_jn’:
>     src/gmpy_mpfr.c:2090: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_remquo’:
>     src/gmpy_mpfr.c:2303: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2306: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2306: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2099: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2100: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2314: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2315: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2315: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2316: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2316: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_y0’:
>     src/gmpy_mpfr.c:2108: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_y1’:
>     src/gmpy_mpfr.c:2114: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_yn’:
>     src/gmpy_mpfr.c:2123: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2132: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2133: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_pow’:
>     src/gmpy_mpfr.c:2342: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_ai’:
>     src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2141: error: ‘result’ undeclared (first use in this function)
>     
>     src/gmpy_mpfr.c:2345: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2345: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2350: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2351: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2352: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2353: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2360: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2361: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2361: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_add’:
>     src/gmpy_mpfr.c:2150: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_atan2’:
>     src/gmpy_mpfr.c:2372: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2159: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2160: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2375: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2160: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2375: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2381: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2382: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2382: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sub’:
>     src/gmpy_mpfr.c:2171: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2174: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2174: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_agm’:
>     src/gmpy_mpfr.c:2393: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2396: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2396: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2402: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2403: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2403: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_hypot’:
>     src/gmpy_mpfr.c:2414: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2423: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2424: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_max’:
>     src/gmpy_mpfr.c:2435: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2438: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2438: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2444: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2445: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2445: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_min’:
>     src/gmpy_mpfr.c:2456: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2459: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2459: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2465: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2466: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_nexttoward’:
>     src/gmpy_mpfr.c:2477: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2480: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2180: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2480: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2181: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2181: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2482: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2486: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2486: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2487: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_mul’:
>     src/gmpy_mpfr.c:2192: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2195: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2195: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_nextabove’:
>     src/gmpy_mpfr.c:2499: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2201: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2202: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2202: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2503: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2507: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2507: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_div’:
>     src/gmpy_mpfr.c:2213: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2216: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2216: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2221: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2222: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2223: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2230: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2231: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2231: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_fmod’:
>     src/gmpy_mpfr.c:2242: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2245: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2245: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2250: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2251: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2252: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2259: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2260: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_remainder’:
>     src/gmpy_mpfr.c:2272: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2275: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2275: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2280: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2281: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2282: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2289: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2290: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2290: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_remquo’:
>     src/gmpy_mpfr.c:2303: error: ‘value’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2306: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2306: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2314: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2315: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2315: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2316: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2316: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_pow’:
>     src/gmpy_mpfr.c:2342: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2345: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2345: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2350: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2351: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2352: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2353: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2360: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2361: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2361: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_atan2’:
>     src/gmpy_mpfr.c:2372: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2375: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2375: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2381: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2382: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2382: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_agm’:
>     src/gmpy_mpfr.c:2393: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2396: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2396: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2402: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2403: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2403: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_hypot’:
>     src/gmpy_mpfr.c:2414: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2417: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2423: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2424: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_nextbelow’:
>     src/gmpy_mpfr.c:2520: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_max’:
>     src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2435: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2438: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2524: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2438: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2528: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2528: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2444: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2445: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2445: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sin_cos’:
>     src/gmpy_mpfr.c:2541: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2541: error: ‘c’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2554: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2555: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2560: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2560: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2561: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2561: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sinh_cosh’:
>     src/gmpy_mpfr.c:2587: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2587: error: ‘c’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2600: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2601: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2606: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2606: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2607: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2607: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_fma’:
>     src/gmpy_mpfr.c:2633: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2633: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2633: error: ‘y’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2633: error: ‘z’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2652: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2652: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_fms’:
>     src/gmpy_mpfr.c:2674: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2674: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2674: error: ‘y’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2674: error: ‘z’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2692: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2693: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2693: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_min’:
>     src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2456: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2459: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2459: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2465: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2466: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2466: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_factorial’:
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2716: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2734: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_nexttoward’:
>     src/gmpy_mpfr.c:2477: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2480: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2480: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2482: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2486: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2486: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2487: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_lessgreater’:
>     src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2758: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2758: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2760: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2760: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_unordered’:
>     src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2783: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2783: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2785: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2785: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_check_range’:
>     src/gmpy_mpfr.c:2802: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2805: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2806: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2806: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2807: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2808: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_nextabove’:
>     src/gmpy_mpfr.c:2815: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2499: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2816: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2816: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2817: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2818: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2503: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2507: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2507: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_format’:
>     src/gmpy_mpfr.c:2979: error: syntax error before ‘)’ token
>     In file included from src/gmpy2.c:2135:
>     src/gmpy_basic.c: In function ‘Pympany_add’:
>     src/gmpy_basic.c:48: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:48: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:49: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:49: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:49: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:50: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:50: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:50: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:52: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:52: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:52: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:66: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:68: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:72: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:75: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:81: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:81: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:96: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:100: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:103: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:111: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:111: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:111: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:111: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:111: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:111: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:114: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:114: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:114: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:114: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:117: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:117: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:118: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_nextbelow’:
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2520: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:129: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2524: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:130: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2528: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2528: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:142: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:143: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sin_cos’:
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2541: error: ‘s’ undeclared (first use in this function)
>     
>     src/gmpy_mpfr.c:2541: error: ‘c’ undeclared (first use in this function)
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:150: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:151: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2554: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2555: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2560: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2560: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:158: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:158: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:158: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:158: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:158: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:158: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:169: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:170: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:182: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:183: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:190: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:191: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:257: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_sub’:
>     src/gmpy_basic.c:287: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:287: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:288: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:288: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:288: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:289: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:289: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:289: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:291: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:291: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:291: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:305: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:307: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:311: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:314: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:320: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:320: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:335: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:339: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:342: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:351: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:351: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:351: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:351: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:351: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:351: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:354: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:354: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:354: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:354: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:354: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2561: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:354: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:357: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2561: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:357: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:358: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:369: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:370: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_sinh_cosh’:
>     src/gmpy_mpfr.c:2587: error: ‘s’ undeclared (first use in this function)
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2587: error: ‘c’ undeclared (first use in this function)
>     
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:382: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2600: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2601: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2606: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2606: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2607: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2607: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:390: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:391: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:397: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:397: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:397: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:397: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:397: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:397: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:408: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:408: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:409: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:421: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:421: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:422: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:429: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:429: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:430: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:496: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_mul’:
>     src/gmpy_basic.c:526: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:526: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:527: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:527: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:527: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:528: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:528: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:528: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:530: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:530: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:530: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:544: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:546: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:550: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:556: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:556: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:571: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:575: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:583: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:583: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_basic.c:583: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:583: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:583: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:583: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:586: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:586: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:586: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:586: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:586: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:586: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:589: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:589: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:590: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:601: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:602: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:614: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:615: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:622: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:623: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_fma’:
>     src/gmpy_mpfr.c:2633: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2633: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2633: error: ‘y’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2633: error: ‘z’ undeclared (first use in this function)
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2651: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2652: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:629: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2652: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:629: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:629: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:629: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:629: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:629: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:640: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:641: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_fms’:
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2674: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2674: error: ‘x’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2674: error: ‘y’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2674: error: ‘z’ undeclared (first use in this function)
>     src/gmpy_basic.c:653: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:654: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2692: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2693: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2693: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_factorial’:
>     src/gmpy_mpfr.c:2716: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_basic.c:661: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2734: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:662: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_lessgreater’:
>     src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2758: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2758: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2760: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2760: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_is_unordered’:
>     src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2783: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2783: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2785: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2785: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c: In function ‘Pympfr_check_range’:
>     src/gmpy_mpfr.c:2802: error: ‘result’ undeclared (first use in this function)
>     src/gmpy_mpfr.c:2805: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2806: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2806: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2807: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2808: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2815: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2816: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2816: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2817: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2818: error: syntax error before ‘)’ token
>     src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpfr.c: In function ‘Pympfr_format’:
>     src/gmpy_mpfr.c:2979: error: syntax error before ‘)’ token
>     In file included from src/gmpy2.c:2135:
>     src/gmpy_basic.c: In function ‘Pympany_add’:
>     src/gmpy_basic.c:48: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:48: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:49: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:49: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:49: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:50: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:50: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:50: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:52: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:52: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:52: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:66: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:68: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:72: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:75: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:81: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:81: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:96: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:100: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:103: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:111: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:111: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:111: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:111: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:111: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:111: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:114: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:114: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:114: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:114: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:114: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:117: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:117: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:118: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:728: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_floordiv’:
>     src/gmpy_basic.c:758: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:758: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:759: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:759: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:759: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:760: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:760: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:760: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:762: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:762: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:762: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:774: error: ‘tempz’ undeclared (first use in this function)
>     
>     src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:776: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:129: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:130: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:785: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:788: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:142: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:143: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:795: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:800: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:800: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:807: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:817: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:150: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:151: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:158: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:158: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:158: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:158: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:158: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:158: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:169: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:170: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:182: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:183: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:894: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_basic.c:895: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:190: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:191: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:257: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:909: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_sub’:
>     src/gmpy_basic.c:287: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:287: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:288: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:288: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:288: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:289: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:289: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:289: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:291: error: ‘rf’ undeclared (first use in this function)src/gmpy_basic.c: In function ‘Pympany_truediv’:
>     
>     src/gmpy_basic.c:932: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:291: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:291: error: ‘pbf’ undeclared (first use in this function)src/gmpy_basic.c:932: error: ‘pbz’ undeclared (first use in this function)
>     
>     src/gmpy_basic.c:933: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:933: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:933: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:935: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:935: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:935: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:939: error: ‘mpq_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:939: error: syntax error before ‘tempq’
>     src/gmpy_basic.c:305: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:307: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:311: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:314: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:320: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:320: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:335: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:339: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:342: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:351: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:351: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:351: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:351: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:351: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:351: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:354: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:354: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:354: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_basic.c:943: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:354: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:354: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:944: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:354: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:357: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:357: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:358: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:954: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:954: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:955: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:369: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:370: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:983: error: ‘tempq’ undeclared (first use in this function)
>     src/gmpy_basic.c:382: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:383: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:989: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:390: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:391: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1042: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1043: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:397: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:397: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:397: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:397: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:397: error: syntax error before ‘)’ token
>     
>     src/gmpy_basic.c:1056: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_div2’:
>     src/gmpy_basic.c:1091: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:1091: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:1092: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1092: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1092: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1093: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1093: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1093: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1095: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1095: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1095: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1109: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1111: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1120: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1123: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1130: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1135: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1135: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1209: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1210: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1223: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_rem’:
>     src/gmpy_basic.c:1246: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:1246: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:1247: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1248: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1248: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1248: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1250: error: ‘qf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1250: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1250: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1250: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1262: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1264: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1268: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1276: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1282: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1287: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1287: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1294: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1303: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1357: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1358: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1374: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1375: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1388: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1389: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1401: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1405: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy_basic.c:1407: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1408: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_divmod’:
>     src/gmpy_basic.c:1433: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:1433: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:1434: error: ‘qz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1434: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1434: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1434: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1435: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1435: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1435: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1437: error: ‘qf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1437: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1437: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1437: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1453: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1455: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1459: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1469: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:397: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1478: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:408: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:1485: error: syntax error before ‘)’ token
>     
>     src/gmpy_basic.c:1485: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:408: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_basic.c:409: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1496: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1510: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:421: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:421: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:422: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1602: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1603: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1620: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:429: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:429: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:430: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1621: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:496: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1636: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1637: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1652: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1657: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1662: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy_basic.c:1664: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1665: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1669: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1669: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1670: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1670: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1672: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1679: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_mul’:
>     src/gmpy_basic.c:526: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:526: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:1686: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:527: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:527: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:527: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:528: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:528: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:528: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:530: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:530: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:530: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:544: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:546: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:550: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:556: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:556: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:571: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:575: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:583: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:583: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:583: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:583: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:583: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:583: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:586: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:586: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:586: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:586: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:586: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:586: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:589: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:589: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:590: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c: In function ‘mpany_richcompare’:
>     src/gmpy2.c:2159: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy2.c:2159: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:601: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:602: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2175: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2177: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2181: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2187: error: syntax error before ‘)’ token
>     src/gmpy2.c:2187: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2191: error: syntax error before ‘)’ token
>     src/gmpy2.c:2191: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2196: error: syntax error before ‘)’ token
>     src/gmpy2.c:2196: error: syntax error before ‘)’ token
>     src/gmpy2.c:2198: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2199: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:614: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:615: error: request for member ‘now’ in something not a structure or unionsrc/gmpy2.c:2208: error: syntax error before ‘)’ token
>     src/gmpy2.c:2208: error: syntax error before ‘)’ token
>     src/gmpy2.c:2216: error: syntax error before ‘)’ token
>     src/gmpy2.c:2216: error: syntax error before ‘)’ token
>     src/gmpy2.c:2225: error: syntax error before ‘)’ token
>     src/gmpy2.c:2225: error: syntax error before ‘)’ token
>     src/gmpy2.c:2237: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2238: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2257: error: syntax error before ‘)’ token
>     src/gmpy2.c:2257: error: syntax error before ‘)’ token
>     src/gmpy2.c:2258: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2259: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2268: error: syntax error before ‘)’ token
>     src/gmpy2.c:2268: error: syntax error before ‘)’ token
>     
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or unionIn file included from src/gmpy2.c:2282:
>     src/gmpy_mpany.c: In function ‘Pympany_binary’:
>     
>     src/gmpy_mpany.c:172: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:622: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:623: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpany.c: In function ‘Pympany_printf’:
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpany.c:251: error: syntax error before ‘)’ token
>     src/gmpy_mpany.c:253: error: syntax error before ‘)’ token
>     
>     src/gmpy_mpany.c:261: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
>     In file included from src/gmpy2.c:2286:
>     src/gmpy_mpmath.c: At top level:
>     src/gmpy_mpmath.c:29: error: syntax error before ‘PympzObject’src/gmpy_basic.c:629: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:629: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:629: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:629: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:629: error: syntax error before ‘)’ token
>     
>     src/gmpy_basic.c:629: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpmath.c: In function ‘mpmath_build_mpf’:
>     src/gmpy_mpmath.c:33: error: ‘man’ undeclared (first use in this function)src/gmpy_basic.c:640: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:641: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpmath.c:37: error: ‘sign’ undeclared (first use in this function)
>     src/gmpy_basic.c:653: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:654: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpmath.c:43: error: ‘bc’ undeclared (first use in this function)src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpmath.c:52: warning: the address of ‘exp’, will always evaluate as ‘true’
>     
>     src/gmpy_mpmath.c:52: warning: pointer type mismatch in conditional expression
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpmath.c: At top level:
>     src/gmpy_mpmath.c:57: error: syntax error before ‘*’ token
>     src/gmpy_mpmath.c:58: error: syntax error before ‘z’
>     src/gmpy_basic.c:661: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:662: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:728: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_floordiv’:
>     src/gmpy_basic.c:758: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:758: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:759: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:759: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:759: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:760: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:760: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:760: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:762: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:762: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:762: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:774: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:776: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:785: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:788: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:795: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:800: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:800: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:807: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:817: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:894: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:895: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:909: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpmath.c: In function ‘Pympz_FROM_MPZ’:
>     src/gmpy_mpmath.c:60: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpmath.c:62: error: syntax error before ‘)’ token
>     src/gmpy_mpmath.c:62: error: syntax error before ‘)’ token
>     src/gmpy_mpmath.c:64: error: ‘z’ undeclared (first use in this function)
>     src/gmpy_mpmath.c: In function ‘Pympz_mpmath_normalize’:
>     src/gmpy_basic.c: In function ‘Pympany_truediv’:
>     src/gmpy_basic.c:932: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:932: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:933: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:933: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:933: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:935: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:935: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:935: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:939: error: ‘mpq_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:939: error: syntax error before ‘tempq’
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:942: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:943: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:944: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:945: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:954: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:954: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:955: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpmath.c:76: error: ‘man’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:77: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:77: error: syntax error before ‘upper’
>     src/gmpy_mpmath.c:84: error: syntax error before ‘)’ token
>     src/gmpy_mpmath.c:116: error: ‘upper’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:117: error: ‘lower’ undeclared (first use in this function)
>     src/gmpy_basic.c:983: error: ‘tempq’ undeclared (first use in this function)
>     src/gmpy_basic.c:989: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpmath.c: In function ‘Pympz_mpmath_create’:
>     src/gmpy_mpmath.c:218: error: ‘man’ undeclared (first use in this function)src/gmpy_basic.c:1042: error: request for member ‘now’ in something not a structure or union
>     
>     src/gmpy_mpmath.c:218: error: ‘upper’ undeclared (first use in this function)
>     src/gmpy_basic.c:1043: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_mpmath.c:218: error: ‘lower’ undeclared (first use in this function)
>     src/gmpy_basic.c:1056: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_div2’:
>     src/gmpy_basic.c:1091: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:1091: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:1092: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1092: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1092: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1093: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1093: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1093: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1095: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1095: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1095: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1109: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1111: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1120: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1123: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1130: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1135: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1135: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1209: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1210: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1223: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c: In function ‘Pympany_rem’:
>     src/gmpy_basic.c:1246: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:1246: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:1247: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1248: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1248: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1248: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1250: error: ‘qf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1250: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1250: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1250: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1262: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1264: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1268: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1276: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1282: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1287: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1287: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1294: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1303: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1357: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1358: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1374: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1375: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1388: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1389: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c: In function ‘gmpy_allocate’:
>     src/gmpy2.c:3122: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘gmpy_reallocate’:
>     src/gmpy_basic.c:1401: error: request for member ‘now’ in something not a structure or unionsrc/gmpy2.c:3150: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     
>     src/gmpy_basic.c:1405: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy_basic.c:1407: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1408: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c: In function ‘gmpy_free’:
>     src/gmpy2.c:3189: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c: In function ‘initgmpy2’:
>     src/gmpy2.c:3325: error: ‘MPFR_RNDN’ undeclared (first use in this function)
>     src/gmpy2.c:3326: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
>     src/gmpy2.c:3327: error: ‘MPFR_RNDU’ undeclared (first use in this function)
>     src/gmpy2.c:3328: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy2.c:3329: error: ‘MPFR_RNDA’ undeclared (first use in this function)
>     src/gmpy_basic.c: In function ‘Pympany_divmod’:
>     src/gmpy_basic.c:1433: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_basic.c:1433: error: syntax error before ‘tempz’
>     src/gmpy_basic.c:1434: error: ‘qz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1434: error: ‘rz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1434: error: ‘paz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1434: error: ‘pbz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1435: error: ‘rq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1435: error: ‘paq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1435: error: ‘pbq’ undeclared (first use in this function)
>     src/gmpy_basic.c:1437: error: ‘qf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1437: error: ‘rf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1437: error: ‘paf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1437: error: ‘pbf’ undeclared (first use in this function)
>     src/gmpy_basic.c:1453: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy_basic.c:1455: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1459: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1469: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1478: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1485: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1485: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1496: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1510: error: syntax error before ‘)’ token
>     src/gmpy_basic.c:1602: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1603: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1620: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1621: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1636: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1637: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1652: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1656: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1657: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1662: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy_basic.c:1664: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1665: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1669: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1669: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1670: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1670: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1672: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1679: error: request for member ‘now’ in something not a structure or union
>     src/gmpy_basic.c:1686: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c: In function ‘mpany_richcompare’:
>     src/gmpy2.c:2159: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy2.c:2159: error: syntax error before ‘tempz’
>     src/gmpy2.c:2175: error: ‘tempz’ undeclared (first use in this function)
>     src/gmpy2.c:2177: error: syntax error before ‘)’ token
>     src/gmpy2.c:2181: error: syntax error before ‘)’ token
>     src/gmpy2.c:2187: error: syntax error before ‘)’ token
>     src/gmpy2.c:2187: error: syntax error before ‘)’ token
>     src/gmpy2.c:2191: error: syntax error before ‘)’ token
>     src/gmpy2.c:2191: error: syntax error before ‘)’ token
>     src/gmpy2.c:2196: error: syntax error before ‘)’ token
>     src/gmpy2.c:2196: error: syntax error before ‘)’ token
>     src/gmpy2.c:2198: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2199: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2208: error: syntax error before ‘)’ token
>     src/gmpy2.c:2208: error: syntax error before ‘)’ token
>     src/gmpy2.c:2216: error: syntax error before ‘)’ token
>     src/gmpy2.c:2216: error: syntax error before ‘)’ token
>     src/gmpy2.c:2225: error: syntax error before ‘)’ token
>     src/gmpy2.c:2225: error: syntax error before ‘)’ token
>     src/gmpy2.c:2237: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2238: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2257: error: syntax error before ‘)’ token
>     src/gmpy2.c:2257: error: syntax error before ‘)’ token
>     src/gmpy2.c:2258: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2259: error: request for member ‘now’ in something not a structure or union
>     src/gmpy2.c:2268: error: syntax error before ‘)’ token
>     src/gmpy2.c:2268: error: syntax error before ‘)’ token
>     In file included from src/gmpy2.c:2282:
>     src/gmpy_mpany.c: In function ‘Pympany_binary’:
>     src/gmpy_mpany.c:172: error: syntax error before ‘)’ token
>     src/gmpy_mpany.c: In function ‘Pympany_printf’:
>     src/gmpy_mpany.c:251: error: syntax error before ‘)’ token
>     src/gmpy_mpany.c:253: error: syntax error before ‘)’ token
>     src/gmpy_mpany.c:261: error: syntax error before ‘)’ token
>     In file included from src/gmpy2.c:2286:
>     src/gmpy_mpmath.c: At top level:
>     src/gmpy_mpmath.c:29: error: syntax error before ‘PympzObject’
>     src/gmpy_mpmath.c: In function ‘mpmath_build_mpf’:
>     src/gmpy_mpmath.c:33: error: ‘man’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:37: error: ‘sign’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:43: error: ‘bc’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:52: warning: the address of ‘exp’, will always evaluate as ‘true’
>     src/gmpy_mpmath.c:52: warning: pointer type mismatch in conditional expression
>     src/gmpy_mpmath.c: At top level:
>     src/gmpy_mpmath.c:57: error: syntax error before ‘*’ token
>     src/gmpy_mpmath.c:58: error: syntax error before ‘z’
>     src/gmpy_mpmath.c: In function ‘Pympz_FROM_MPZ’:
>     src/gmpy_mpmath.c:60: error: ‘self’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:62: error: syntax error before ‘)’ token
>     src/gmpy_mpmath.c:62: error: syntax error before ‘)’ token
>     src/gmpy_mpmath.c:64: error: ‘z’ undeclared (first use in this function)
>     src/gmpy_mpmath.c: In function ‘Pympz_mpmath_normalize’:
>     src/gmpy_mpmath.c:76: error: ‘man’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:77: error: ‘mpz_t’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:77: error: syntax error before ‘upper’
>     src/gmpy_mpmath.c:84: error: syntax error before ‘)’ token
>     src/gmpy_mpmath.c:116: error: ‘upper’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:117: error: ‘lower’ undeclared (first use in this function)
>     src/gmpy_mpmath.c: In function ‘Pympz_mpmath_create’:
>     src/gmpy_mpmath.c:218: error: ‘man’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:218: error: ‘upper’ undeclared (first use in this function)
>     src/gmpy_mpmath.c:218: error: ‘lower’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘gmpy_allocate’:
>     src/gmpy2.c:3122: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘gmpy_reallocate’:
>     src/gmpy2.c:3150: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘gmpy_free’:
>     src/gmpy2.c:3189: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
>     src/gmpy2.c: In function ‘initgmpy2’:
>     src/gmpy2.c:3325: error: ‘MPFR_RNDN’ undeclared (first use in this function)
>     src/gmpy2.c:3326: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
>     src/gmpy2.c:3327: error: ‘MPFR_RNDU’ undeclared (first use in this function)
>     src/gmpy2.c:3328: error: ‘MPFR_RNDD’ undeclared (first use in this function)
>     src/gmpy2.c:3329: error: ‘MPFR_RNDA’ undeclared (first use in this function)
>     lipo: can't figure out the architecture type of: /var/folders/sl/slhfAhHiEuagNerNl-FwZE+++TI/-Tmp-//ccncCGQo.out
>     error: command 'gcc-4.0' failed with exit status 1
>     Complete output from command /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py27-gmpy/bin/python -c "import setuptools;__file__='/Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py27-gmpy/build/gmpy/setup.py';execfile(__file__)" install --single-version-externally-managed --record /var/folders/sl/slhfAhHiEuagNerNl-FwZE+++TI/-Tmp-/pip-tC3EBv-record/install-record.txt --install-headers /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py27-gmpy/bin/../include/site/python2.7:
>     running install
> 
> running build
> 
> running build_ext
> 
> building 'gmpy2' extension
> 
> creating build
> 
> creating build/temp.macosx-10.3-fat-2.7
> 
> creating build/temp.macosx-10.3-fat-2.7/src
> 
> gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386 -g -O2 -DNDEBUG -g -O3 -DWITHMPFR=1 -DNOMPC=1 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c src/gmpy2.c -o build/temp.macosx-10.3-fat-2.7/src/gmpy2.o
> 
> In file included from src/gmpy2.c:291:
> 
> src/gmpy.h:78:19: error: gmp.h: No such file or directory
> 
> In file included from src/gmpy2.c:291:
> 
> src/gmpy.h:90: error: syntax error before ‘mpz_t’
> 
> src/gmpy.h:90: warning: no semicolon at end of struct or union
> 
> src/gmpy.h:92: error: syntax error before ‘}’ token
> 
> src/gmpy.h:92: warning: data definition has no type or storage class
> 
> src/gmpy.h:96: error: syntax error before ‘mpq_t’
> 
> src/gmpy.h:96: warning: no semicolon at end of struct or union
> 
> src/gmpy.h:98: error: syntax error before ‘}’ token
> 
> src/gmpy.h:98: warning: data definition has no type or storage class
> 
> src/gmpy.h:102: error: syntax error before ‘mpz_t’
> 
> src/gmpy.h:102: warning: no semicolon at end of struct or union
> 
> src/gmpy.h:103: warning: data definition has no type or storage class
> 
> src/gmpy.h:106:20: error: mpfr.h: No such file or directory
> 
> In file included from src/gmpy.h:107,
> 
>                  from src/gmpy2.c:291:
> 
> src/gmpy_mpfr.h:46: error: syntax error before ‘mpfr_t’
> 
> src/gmpy_mpfr.h:46: warning: no semicolon at end of struct or union
> 
> src/gmpy_mpfr.h:50: error: syntax error before ‘}’ token
> 
> src/gmpy_mpfr.h:50: warning: data definition has no type or storage class
> 
> src/gmpy_mpfr.h:163: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:165: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:165: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.h:165: warning: data definition has no type or storage class
> 
> src/gmpy_mpfr.h:166: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:166: warning: data definition has no type or storage class
> 
> src/gmpy_mpfr.h:167: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:167: warning: data definition has no type or storage class
> 
> src/gmpy_mpfr.h:168: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:168: warning: data definition has no type or storage class
> 
> src/gmpy_mpfr.h:169: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:169: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.h:169: warning: data definition has no type or storage class
> 
> In file included from src/gmpy2.c:291:
> 
> src/gmpy.h:203: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy.h:203: warning: no semicolon at end of struct or union
> 
> src/gmpy.h:208: warning: data definition has no type or storage class
> 
> src/gmpy.h:214: error: syntax error before ‘emax’
> 
> src/gmpy.h:214: warning: data definition has no type or storage class
> 
> src/gmpy.h:215: error: syntax error before ‘emin’
> 
> src/gmpy.h:215: warning: data definition has no type or storage class
> 
> src/gmpy.h:228: error: syntax error before ‘}’ token
> 
> src/gmpy.h:228: warning: data definition has no type or storage class
> 
> src/gmpy.h:232: error: syntax error before ‘gmpy_context’
> 
> src/gmpy.h:232: warning: no semicolon at end of struct or union
> 
> src/gmpy.h:234: error: syntax error before ‘}’ token
> 
> src/gmpy.h:234: warning: data definition has no type or storage class
> 
> src/gmpy2.c:373: error: syntax error before ‘*’ token
> 
> src/gmpy2.c:373: warning: data definition has no type or storage class
> 
> In file included from src/gmpy2.c:404:
> 
> src/mpz_pylong.c:21:2: error: #error "Python limb larger than GMP limb !!!"
> 
> In file included from src/gmpy2.c:404:
> 
> src/mpz_pylong.c:48: error: syntax error before ‘up’
> 
> src/mpz_pylong.c: In function ‘mpn_sizebits’:
> 
> src/mpz_pylong.c:50: error: ‘mp_limb_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:50: error: (Each undeclared identifier is reported only once
> 
> src/mpz_pylong.c:50: error: for each function it appears in.)
> 
> src/mpz_pylong.c:50: error: syntax error before ‘x’
> 
> src/mpz_pylong.c:51: error: ‘un’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:52: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:53: error: ‘x’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:53: error: ‘up’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:89: error: syntax error before ‘up’
> 
> src/mpz_pylong.c: In function ‘mpn_pylong_size’:
> 
> src/mpz_pylong.c:91: error: ‘up’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:91: error: ‘un’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:100: error: syntax error before ‘mp_ptr’
> 
> src/mpz_pylong.c: In function ‘mpn_get_pylong’:
> 
> src/mpz_pylong.c:102: error: ‘mp_limb_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:102: error: syntax error before ‘n1’
> 
> src/mpz_pylong.c:106: error: ‘digits’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:106: error: ‘size’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:109: error: ‘un’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:115: error: ‘n1’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:115: error: ‘up’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:116: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:128: error: ‘n0’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: In function ‘mpn_size_from_pylong’:
> 
> src/mpz_pylong.c:140: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:144: error: syntax error before ‘up’
> 
> src/mpz_pylong.c: In function ‘mpn_set_pylong’:
> 
> src/mpz_pylong.c:146: error: ‘mp_limb_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:146: error: syntax error before ‘n1’
> 
> src/mpz_pylong.c:150: error: ‘digits’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:150: error: ‘size’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:154: error: ‘un’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:154: error: ‘up’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:159: error: ‘n1’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:160: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:167: error: ‘d’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:168: error: ‘GMP_NUMB_MASK’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:194: error: syntax error before ‘up’
> 
> src/mpz_pylong.c: In function ‘mpn_pythonhash’:
> 
> src/mpz_pylong.c:196: error: ‘mp_limb_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:196: error: syntax error before ‘n1’
> 
> src/mpz_pylong.c:197: error: ‘mp_size_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:202: error: ‘un’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:204: error: ‘i’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:205: error: ‘n1’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:205: error: ‘up’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:213: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:232: error: ‘n0’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:247: error: syntax error before ‘z’
> 
> src/mpz_pylong.c: In function ‘mpz_pythonhash’:
> 
> src/mpz_pylong.c:249: error: ‘z’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:259: error: syntax error before ‘z’
> 
> src/mpz_pylong.c: In function ‘mpz_get_PyLong’:
> 
> src/mpz_pylong.c:261: error: ‘z’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:276: error: syntax error before ‘z’
> 
> src/mpz_pylong.c: In function ‘mpz_set_PyLong’:
> 
> src/mpz_pylong.c:278: error: ‘lsrc’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:284: error: ‘z’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:297: error: ‘mp_size_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:297: error: syntax error before ‘size’
> 
> In file included from src/gmpy2.c:408:
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:40: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:40: warning: data definition has no type or storage class
> 
> src/gmpy_cache.c: In function ‘set_zcache’:
> 
> src/gmpy_cache.c:53: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:57: error: syntax error before ‘newo’
> 
> src/gmpy_cache.c: In function ‘mpz_inoc’:
> 
> src/gmpy_cache.c:64: error: ‘newo’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:64: error: subscripted value is neither array nor pointer
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:73: error: syntax error before ‘oldo’
> 
> src/gmpy_cache.c: In function ‘mpz_cloc’:
> 
> src/gmpy_cache.c:75: error: ‘oldo’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:76: error: subscripted value is neither array nor pointer
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:94: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:94: warning: data definition has no type or storage class
> 
> src/gmpy_cache.c: In function ‘set_pympzcache’:
> 
> src/gmpy_cache.c:104: error: request for member ‘z’ in something not a structure or union
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:112: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pympz_new’:
> 
> src/gmpy_cache.c:115: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:127: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c:127: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:136: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pympz_dealloc’:
> 
> src/gmpy_cache.c:140: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:151: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:151: warning: data definition has no type or storage class
> 
> src/gmpy_cache.c: In function ‘set_pyxmpzcache’:
> 
> src/gmpy_cache.c:161: error: request for member ‘z’ in something not a structure or union
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:169: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pyxmpz_new’:
> 
> src/gmpy_cache.c:172: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:184: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c:184: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:192: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pyxmpz_dealloc’:
> 
> src/gmpy_cache.c:196: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:207: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:207: warning: data definition has no type or storage class
> 
> src/gmpy_cache.c: In function ‘set_pympqcache’:
> 
> src/gmpy_cache.c:217: error: request for member ‘q’ in something not a structure or union
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:225: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pympq_new’:
> 
> src/gmpy_cache.c:228: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:240: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c:240: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:249: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pympq_dealloc’:
> 
> src/gmpy_cache.c:253: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:253: error: invalid type argument of ‘->’
> 
> In file included from src/gmpy2.c:291:
> 
> src/gmpy.h:78:19: error: gmp.h: No such file or directory
> 
> In file included from src/gmpy2.c:291:
> 
> src/gmpy.h:90: error: syntax error before ‘mpz_t’
> 
> src/gmpy.h:90: warning: no semicolon at end of struct or union
> 
> src/gmpy.h:92: error: syntax error before ‘}’ token
> 
> src/gmpy.h:92: warning: data definition has no type or storage class
> 
> src/gmpy.h:96: error: syntax error before ‘mpq_t’
> 
> src/gmpy.h:96: warning: no semicolon at end of struct or union
> 
> src/gmpy.h:98: error: syntax error before ‘}’ token
> 
> src/gmpy.h:98: warning: data definition has no type or storage class
> 
> src/gmpy.h:102: error: syntax error before ‘mpz_t’
> 
> src/gmpy.h:102: warning: no semicolon at end of struct or union
> 
> src/gmpy.h:103: warning: data definition has no type or storage class
> 
> src/gmpy.h:106:20: error: mpfr.h: No such file or directory
> 
> In file included from src/gmpy.h:107,
> 
>                  from src/gmpy2.c:291:
> 
> src/gmpy_mpfr.h:46: error: syntax error before ‘mpfr_t’
> 
> src/gmpy_mpfr.h:46: warning: no semicolon at end of struct or union
> 
> src/gmpy_mpfr.h:50: error: syntax error before ‘}’ token
> 
> src/gmpy_mpfr.h:50: warning: data definition has no type or storage class
> 
> src/gmpy_mpfr.h:163: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:165: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:165: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.h:165: warning: data definition has no type or storage class
> 
> src/gmpy_mpfr.h:166: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:166: warning: data definition has no type or storage class
> 
> src/gmpy_mpfr.h:167: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:167: warning: data definition has no type or storage class
> 
> src/gmpy_mpfr.h:168: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:168: warning: data definition has no type or storage class
> 
> src/gmpy_mpfr.h:169: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.h:169: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.h:169: warning: data definition has no type or storage class
> 
> In file included from src/gmpy2.c:291:
> 
> src/gmpy.h:203: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy.h:203: warning: no semicolon at end of struct or union
> 
> src/gmpy.h:208: warning: data definition has no type or storage class
> 
> src/gmpy.h:214: error: syntax error before ‘emax’
> 
> src/gmpy.h:214: warning: data definition has no type or storage class
> 
> src/gmpy.h:215: error: syntax error before ‘emin’
> 
> src/gmpy.h:215: warning: data definition has no type or storage class
> 
> src/gmpy.h:228: error: syntax error before ‘}’ token
> 
> src/gmpy.h:228: warning: data definition has no type or storage class
> 
> src/gmpy.h:232: error: syntax error before ‘gmpy_context’
> 
> src/gmpy.h:232: warning: no semicolon at end of struct or union
> 
> src/gmpy.h:234: error: syntax error before ‘}’ token
> 
> src/gmpy.h:234: warning: data definition has no type or storage class
> 
> src/gmpy2.c:373: error: syntax error before ‘*’ token
> 
> src/gmpy2.c:373: warning: data definition has no type or storage class
> 
> In file included from src/gmpy2.c:404:
> 
> src/mpz_pylong.c:21:2: error: #error "Python limb larger than GMP limb !!!"
> 
> In file included from src/gmpy2.c:404:
> 
> src/mpz_pylong.c:48: error: syntax error before ‘up’
> 
> src/mpz_pylong.c: In function ‘mpn_sizebits’:
> 
> src/mpz_pylong.c:50: error: ‘mp_limb_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:50: error: (Each undeclared identifier is reported only once
> 
> src/mpz_pylong.c:50: error: for each function it appears in.)
> 
> src/mpz_pylong.c:50: error: syntax error before ‘x’
> 
> src/mpz_pylong.c:51: error: ‘un’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:52: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:53: error: ‘x’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:53: error: ‘up’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:89: error: syntax error before ‘up’
> 
> src/mpz_pylong.c: In function ‘mpn_pylong_size’:
> 
> src/mpz_pylong.c:91: error: ‘up’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:91: error: ‘un’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:100: error: syntax error before ‘mp_ptr’
> 
> src/mpz_pylong.c: In function ‘mpn_get_pylong’:
> 
> src/mpz_pylong.c:102: error: ‘mp_limb_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:102: error: syntax error before ‘n1’
> 
> src/mpz_pylong.c:106: error: ‘digits’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:106: error: ‘size’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:109: error: ‘un’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:254: error: invalid type argument of ‘->’
> 
> src/mpz_pylong.c:115: error: ‘n1’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:115: error: ‘up’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:116: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:128: error: ‘n0’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: In function ‘mpn_size_from_pylong’:
> 
> src/mpz_pylong.c:140: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:144: error: syntax error before ‘up’
> 
> src/mpz_pylong.c: In function ‘mpn_set_pylong’:
> 
> src/mpz_pylong.c:146: error: ‘mp_limb_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:146: error: syntax error before ‘n1’
> 
> src/mpz_pylong.c:150: error: ‘digits’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:150: error: ‘size’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:154: error: ‘un’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:154: error: ‘up’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:159: error: ‘n1’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:160: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:167: error: ‘d’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:168: error: ‘GMP_NUMB_MASK’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:194: error: syntax error before ‘up’
> 
> src/mpz_pylong.c: In function ‘mpn_pythonhash’:
> 
> src/mpz_pylong.c:196: error: ‘mp_limb_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:196: error: syntax error before ‘n1’
> 
> src/mpz_pylong.c:197: error: ‘mp_size_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:202: error: ‘un’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:204: error: ‘i’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:205: error: ‘n1’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:205: error: ‘up’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:213: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:232: error: ‘n0’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:247: error: syntax error before ‘z’
> 
> src/mpz_pylong.c: In function ‘mpz_pythonhash’:
> 
> src/mpz_pylong.c:249: error: ‘z’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:259: error: syntax error before ‘z’
> 
> src/mpz_pylong.c: In function ‘mpz_get_PyLong’:
> 
> src/mpz_pylong.c:261: error: ‘z’ undeclared (first use in this function)
> 
> src/mpz_pylong.c: At top level:
> 
> src/mpz_pylong.c:276: error: syntax error before ‘z’
> 
> src/mpz_pylong.c: In function ‘mpz_set_PyLong’:
> 
> src/mpz_pylong.c:278: error: ‘lsrc’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:284: error: ‘z’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:297: error: ‘mp_size_t’ undeclared (first use in this function)
> 
> src/mpz_pylong.c:297: error: syntax error before ‘size’
> 
> In file included from src/gmpy2.c:408:
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:40: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:40: warning: data definition has no type or storage class
> 
> src/gmpy_cache.c: In function ‘set_zcache’:
> 
> src/gmpy_cache.c:53: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:57: error: syntax error before ‘newo’
> 
> src/gmpy_cache.c: In function ‘mpz_inoc’:
> 
> src/gmpy_cache.c:64: error: ‘newo’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:64: error: subscripted value is neither array nor pointer
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:73: error: syntax error before ‘oldo’
> 
> src/gmpy_cache.c: In function ‘mpz_cloc’:
> 
> src/gmpy_cache.c:75: error: ‘oldo’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:76: error: subscripted value is neither array nor pointer
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:94: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:94: warning: data definition has no type or storage class
> 
> src/gmpy_cache.c: In function ‘set_pympzcache’:
> 
> src/gmpy_cache.c:104: error: request for member ‘z’ in something not a structure or union
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:112: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pympz_new’:
> 
> src/gmpy_cache.c:115: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:127: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c:127: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:136: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pympz_dealloc’:
> 
> src/gmpy_cache.c:140: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:151: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:151: warning: data definition has no type or storage class
> 
> src/gmpy_cache.c: In function ‘set_pyxmpzcache’:
> 
> src/gmpy_cache.c:161: error: request for member ‘z’ in something not a structure or union
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:169: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pyxmpz_new’:
> 
> src/gmpy_cache.c:172: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:184: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c:184: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:192: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pyxmpz_dealloc’:
> 
> src/gmpy_cache.c:196: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:207: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:207: warning: data definition has no type or storage class
> 
> src/gmpy_cache.c: In function ‘set_pympqcache’:
> 
> src/gmpy_cache.c:217: error: request for member ‘q’ in something not a structure or union
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:225: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pympq_new’:
> 
> src/gmpy_cache.c:228: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:240: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c:240: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:249: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pympq_dealloc’:
> 
> src/gmpy_cache.c:253: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:253: error: invalid type argument of ‘->’
> 
> src/gmpy_cache.c:254: error: invalid type argument of ‘->’
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:266: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:266: warning: data definition has no type or storage class
> 
> src/gmpy_cache.c: In function ‘set_pympfrcache’:
> 
> src/gmpy_cache.c:276: error: request for member ‘f’ in something not a structure or union
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:284: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:285: error: syntax error before ‘bits’
> 
> src/gmpy_cache.c: In function ‘Pympfr_new’:
> 
> src/gmpy_cache.c:287: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:290: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_cache.c:292: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:292: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:306: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c:306: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c:312: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:317: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pympfr_dealloc’:
> 
> src/gmpy_cache.c:323: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:323: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:412:
> 
> src/gmpy_misc.c: In function ‘Pygmpy_get_mp_version’:
> 
> src/gmpy_misc.c:73: error: ‘gmp_version’ undeclared (first use in this function)
> 
> src/gmpy_misc.c: In function ‘Pygmpy_get_mpfr_version’:
> 
> src/gmpy_misc.c:88: error: ‘MPFR_VERSION_STRING’ undeclared (first use in this function)
> 
> src/gmpy_misc.c: In function ‘Pygmpy_get_mp_limbsize’:
> 
> src/gmpy_misc.c:116: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:417:
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:34: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_new’:
> 
> src/gmpy_context.c:37: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c:39: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:39: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:46: error: ‘MPFR_RNDN’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:68: error: syntax error before ‘return’
> 
> src/gmpy_context.c:72: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_dealloc’:
> 
> src/gmpy_context.c:74: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: In function ‘_round_to_name’:
> 
> src/gmpy_context.c:83: error: ‘MPFR_RNDN’ undeclared (first use in this function)
> 
> src/gmpy_context.c:84: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
> 
> src/gmpy_context.c:85: error: ‘MPFR_RNDU’ undeclared (first use in this function)
> 
> src/gmpy_context.c:86: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy_context.c:87: error: ‘MPFR_RNDA’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:93: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_repr’:
> 
> src/gmpy_context.c:136: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:266: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:266: warning: data definition has no type or storage class
> 
> src/gmpy_context.c: In function ‘Pygmpy_context’:
> 
> src/gmpy_context.c:190: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_context.c: In function ‘Pygmpy_new_context’:
> 
> src/gmpy_context.c:258: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_cache.c: In function ‘set_pympfrcache’:
> 
> src/gmpy_context.c: In function ‘Pygmpy_set_context’:
> 
> src/gmpy_cache.c:276: error: request for member ‘f’ in something not a structure or union
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:284: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c:285: error: syntax error before ‘bits’
> 
> src/gmpy_cache.c: In function ‘Pympfr_new’:
> 
> src/gmpy_cache.c:287: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:290: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_cache.c:292: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:292: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:306: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c:306: error: syntax error before ‘)’ token
> 
> src/gmpy_cache.c:312: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_cache.c: At top level:
> 
> src/gmpy_cache.c:317: error: syntax error before ‘*’ token
> 
> src/gmpy_cache.c: In function ‘Pympfr_dealloc’:
> 
> src/gmpy_cache.c:323: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_cache.c:323: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:412:
> 
> src/gmpy_misc.c: In function ‘Pygmpy_get_mp_version’:
> 
> src/gmpy_misc.c:73: error: ‘gmp_version’ undeclared (first use in this function)
> 
> src/gmpy_misc.c: In function ‘Pygmpy_get_mpfr_version’:
> 
> src/gmpy_misc.c:88: error: ‘MPFR_VERSION_STRING’ undeclared (first use in this function)
> 
> src/gmpy_misc.c: In function ‘Pygmpy_get_mp_limbsize’:
> 
> src/gmpy_misc.c:116: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:417:
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:34: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_new’:
> 
> src/gmpy_context.c:37: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c:39: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:39: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:46: error: ‘MPFR_RNDN’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:68: error: syntax error before ‘return’
> 
> src/gmpy_context.c:72: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_dealloc’:
> 
> src/gmpy_context.c:74: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: In function ‘_round_to_name’:
> 
> src/gmpy_context.c:83: error: ‘MPFR_RNDN’ undeclared (first use in this function)
> 
> src/gmpy_context.c:84: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
> 
> src/gmpy_context.c:85: error: ‘MPFR_RNDU’ undeclared (first use in this function)
> 
> src/gmpy_context.c:86: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy_context.c:87: error: ‘MPFR_RNDA’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:93: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_repr’:
> 
> src/gmpy_context.c:136: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: In function ‘Pygmpy_context’:
> 
> src/gmpy_context.c:190: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_context.c: In function ‘Pygmpy_new_context’:
> 
> src/gmpy_context.c:258: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_context.c: In function ‘Pygmpy_set_context’:
> 
> src/gmpy_context.c:322: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:323: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c:324: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c: In function ‘GMPyContext_enter’:
> 
> src/gmpy_context.c:336: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_context.c:336: error: ‘save’ undeclared (first use in this function)
> 
> src/gmpy_context.c:338: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:344: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c:348: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:350: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:351: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c:352: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c: In function ‘GMPyContext_exit’:
> 
> src/gmpy_context.c:362: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:368: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:368: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:369: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c:370: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c:371: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_clear_flags’:
> 
> src/gmpy_context.c:381: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:382: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:383: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:384: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:385: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:386: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:409: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_subnormalize’:
> 
> src/gmpy_context.c:409: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:409: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_subnormalize’:
> 
> src/gmpy_context.c:409: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:409: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:410: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_underflow’:
> 
> src/gmpy_context.c:410: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:410: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_underflow’:
> 
> src/gmpy_context.c:410: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:410: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:411: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_overflow’:
> 
> src/gmpy_context.c:411: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:411: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_overflow’:
> 
> src/gmpy_context.c:411: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:411: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:412: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_inexact’:
> 
> src/gmpy_context.c:412: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:412: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_inexact’:
> 
> src/gmpy_context.c:412: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:412: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:413: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_invalid’:
> 
> src/gmpy_context.c:413: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:413: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_invalid’:
> 
> src/gmpy_context.c:413: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:413: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:414: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_erange’:
> 
> src/gmpy_context.c:414: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:414: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_erange’:
> 
> src/gmpy_context.c:414: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:414: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:415: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_divzero’:
> 
> src/gmpy_context.c:415: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:415: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_divzero’:
> 
> src/gmpy_context.c:415: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:415: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:416: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_underflow’:
> 
> src/gmpy_context.c:416: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:416: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_underflow’:
> 
> src/gmpy_context.c:416: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:416: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:417: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_overflow’:
> 
> src/gmpy_context.c:417: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:417: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_overflow’:
> 
> src/gmpy_context.c:417: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:417: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:418: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_inexact’:
> 
> src/gmpy_context.c:322: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:323: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c:324: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c: In function ‘GMPyContext_enter’:
> 
> src/gmpy_context.c:336: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_context.c:336: error: ‘save’ undeclared (first use in this function)
> 
> src/gmpy_context.c:338: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:344: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c:348: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:350: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:351: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c:352: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c: In function ‘GMPyContext_exit’:
> 
> src/gmpy_context.c:362: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:368: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:368: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:369: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c:370: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_context.c:371: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_clear_flags’:
> 
> src/gmpy_context.c:381: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:382: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:383: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:384: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:385: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c:386: error: syntax error before ‘)’ token
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:409: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_subnormalize’:
> 
> src/gmpy_context.c:409: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:409: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_subnormalize’:
> 
> src/gmpy_context.c:409: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:409: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:410: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_underflow’:
> 
> src/gmpy_context.c:410: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:410: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_underflow’:
> 
> src/gmpy_context.c:410: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:410: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:411: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_overflow’:
> 
> src/gmpy_context.c:411: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:411: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_overflow’:
> 
> src/gmpy_context.c:411: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:411: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:412: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_inexact’:
> 
> src/gmpy_context.c:412: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:412: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_inexact’:
> 
> src/gmpy_context.c:412: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:412: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:413: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_invalid’:
> 
> src/gmpy_context.c:413: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:413: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_invalid’:
> 
> src/gmpy_context.c:413: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:413: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:414: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_erange’:
> 
> src/gmpy_context.c:414: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:414: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_erange’:
> 
> src/gmpy_context.c:414: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:414: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:415: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_divzero’:
> 
> src/gmpy_context.c:415: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:415: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_divzero’:
> 
> src/gmpy_context.c:415: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:415: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:416: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_underflow’:
> 
> src/gmpy_context.c:416: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:416: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_underflow’:
> 
> src/gmpy_context.c:416: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:416: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:417: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_overflow’:
> 
> src/gmpy_context.c:417: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:417: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_overflow’:
> 
> src/gmpy_context.c:417: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:417: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:418: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_inexact’:
> 
> src/gmpy_context.c:418: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:418: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_inexact’:
> 
> src/gmpy_context.c:418: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:418: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:419: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_invalid’:
> 
> src/gmpy_context.c:419: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:419: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_invalid’:
> 
> src/gmpy_context.c:419: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:419: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:420: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_erange’:
> 
> src/gmpy_context.c:420: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:420: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_erange’:
> 
> src/gmpy_context.c:420: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:420: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:421: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_divzero’:
> 
> src/gmpy_context.c:421: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:421: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_divzero’:
> 
> src/gmpy_context.c:421: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:421: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:424: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_precision’:
> 
> src/gmpy_context.c:426: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:430: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_precision’:
> 
> src/gmpy_context.c:434: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:439: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
> 
> src/gmpy_context.c:439: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
> 
> src/gmpy_context.c:443: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c:443: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_context.c:443: error: syntax error before ‘temp’
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:510: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_round’:
> 
> src/gmpy_context.c:512: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:516: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_round’:
> 
> src/gmpy_context.c:520: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:529: error: ‘MPFR_RNDN’ undeclared (first use in this function)
> 
> src/gmpy_context.c:418: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:418: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_inexact’:
> 
> src/gmpy_context.c:418: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:418: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:419: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_invalid’:
> 
> src/gmpy_context.c:419: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:419: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_invalid’:
> 
> src/gmpy_context.c:419: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:419: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:420: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_erange’:
> 
> src/gmpy_context.c:420: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:420: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_erange’:
> 
> src/gmpy_context.c:420: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:420: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:421: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_trap_divzero’:
> 
> src/gmpy_context.c:421: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:421: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_trap_divzero’:
> 
> src/gmpy_context.c:421: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:421: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:424: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_precision’:
> 
> src/gmpy_context.c:426: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:430: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_precision’:
> 
> src/gmpy_context.c:434: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:439: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
> 
> src/gmpy_context.c:439: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
> 
> src/gmpy_context.c:443: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c:443: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_context.c:443: error: syntax error before ‘temp’
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:510: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_round’:
> 
> src/gmpy_context.c:512: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:516: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_round’:
> 
> src/gmpy_context.c:520: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:529: error: ‘MPFR_RNDN’ undeclared (first use in this function)
> 
> src/gmpy_context.c:530: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c:531: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
> 
> src/gmpy_context.c:533: error: ‘MPFR_RNDU’ undeclared (first use in this function)
> 
> src/gmpy_context.c:535: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy_context.c:537: error: ‘MPFR_RNDA’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:630: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_emin’:
> 
> src/gmpy_context.c:632: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:530: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c:636: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_emin’:
> 
> src/gmpy_context.c:640: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:531: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
> 
> src/gmpy_context.c:533: error: ‘MPFR_RNDU’ undeclared (first use in this function)
> 
> src/gmpy_context.c:535: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy_context.c:537: error: ‘MPFR_RNDA’ undeclared (first use in this function)
> 
> src/gmpy_context.c:649: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_context.c:649: error: syntax error before ‘exp’
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:653: error: syntax error before ‘->’ token
> 
> src/gmpy_context.c:654: warning: parameter names (without types) in function declaration
> 
> src/gmpy_context.c:654: warning: data definition has no type or storage class
> 
> src/gmpy_context.c:655: error: syntax error before ‘return’
> 
> src/gmpy_context.c:659: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_emax’:
> 
> src/gmpy_context.c:661: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:665: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_emax’:
> 
> src/gmpy_context.c:669: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:630: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_emin’:
> 
> src/gmpy_context.c:632: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c:678: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_context.c:678: error: syntax error before ‘exp’
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:636: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: At top level:src/gmpy_context.c: In function ‘GMPyContext_set_emin’:
> 
> 
> 
> src/gmpy_context.c:682: error: syntax error before ‘->’ tokensrc/gmpy_context.c:640: error: ‘value’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_context.c:683: warning: parameter names (without types) in function declaration
> 
> src/gmpy_context.c:683: warning: data definition has no type or storage class
> 
> src/gmpy_context.c:684: error: syntax error before ‘return’
> 
> src/gmpy_context.c:649: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_context.c:649: error: syntax error before ‘exp’
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:653: error: syntax error before ‘->’ token
> 
> src/gmpy_context.c:654: warning: parameter names (without types) in function declaration
> 
> src/gmpy_context.c:654: warning: data definition has no type or storage class
> 
> src/gmpy_context.c:655: error: syntax error before ‘return’
> 
> src/gmpy_context.c:659: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_get_emax’:
> 
> src/gmpy_context.c:661: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:665: error: syntax error before ‘*’ token
> 
> src/gmpy_context.c: In function ‘GMPyContext_set_emax’:
> 
> src/gmpy_context.c:669: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_context.c:678: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_context.c:678: error: syntax error before ‘exp’
> 
> src/gmpy_context.c: At top level:
> 
> src/gmpy_context.c:682: error: syntax error before ‘->’ token
> 
> src/gmpy_context.c:683: warning: parameter names (without types) in function declaration
> 
> src/gmpy_context.c:683: warning: data definition has no type or storage class
> 
> src/gmpy_context.c:684: error: syntax error before ‘return’
> 
> In file included from src/gmpy2.c:422:
> 
> src/gmpy_binary.c: In function ‘Pympz_From_Old_Binary’:
> 
> src/gmpy_binary.c:41: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_binary.c: In function ‘Pympq_From_Old_Binary’:
> 
> src/gmpy_binary.c:73: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:73: error: syntax error before ‘numerator’
> 
> src/gmpy_binary.c:74: error: ‘result’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:422:
> 
> src/gmpy_binary.c: In function ‘Pympz_From_Old_Binary’:
> 
> src/gmpy_binary.c:41: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:102: error: ‘numerator’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:103: error: ‘denominator’ undeclared (first use in this function)
> 
> src/gmpy_binary.c: In function ‘Pympfr_From_Old_Binary’:
> 
> src/gmpy_binary.c:126: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:127: error: ‘mpfr_t’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:127: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:128: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:141: error: ‘prec’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_binary.c:193: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_binary.c:194: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:196: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:197: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:199: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:201: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:204: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_binary.c:206: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_binary.c:209: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:426: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2Pympz’:
> 
> src/gmpy2.c:429: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:433: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:437: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2Pyxmpz’:
> 
> src/gmpy2.c:440: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:444: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:448: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2Pympz’:
> 
> src/gmpy_binary.c: In function ‘Pympq_From_Old_Binary’:
> 
> src/gmpy_binary.c:73: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:73: error: syntax error before ‘numerator’
> 
> src/gmpy_binary.c:74: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:102: error: ‘numerator’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:103: error: ‘denominator’ undeclared (first use in this function)
> 
> src/gmpy_binary.c: In function ‘Pympfr_From_Old_Binary’:
> 
> src/gmpy_binary.c:126: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:127: error: ‘mpfr_t’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:127: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:128: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:141: error: ‘prec’ undeclared (first use in this function)
> 
> src/gmpy_binary.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_binary.c:193: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_binary.c:194: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:196: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:197: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:199: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:201: error: syntax error before ‘digit’
> 
> src/gmpy_binary.c:204: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_binary.c:206: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_binary.c:209: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:426: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2Pympz’:
> 
> src/gmpy2.c:429: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:433: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:437: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2Pyxmpz’:
> 
> src/gmpy2.c:440: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:444: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:448: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2Pympz’:
> 
> src/gmpy2.c:451: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:455: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:459: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2Pyxmpz’:
> 
> src/gmpy2.c:462: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:466: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:470: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2Pympq’:
> 
> src/gmpy2.c:473: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:451: error: ‘newob’ undeclared (first use in this function)src/gmpy2.c:477: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:482: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyInt2Pympz’:
> 
> src/gmpy2.c:485: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:493: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyInt2Pyxmpz’:
> 
> src/gmpy2.c:496: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:455: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:504: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyInt2Pympq’:
> 
> src/gmpy2.c:507: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:516: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyFloat2Pympz’:
> 
> src/gmpy2.c:519: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:459: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2Pyxmpz’:
> 
> src/gmpy2.c:462: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:539: error: syntax error before ‘*’ token
> 
> src/gmpy2.c:466: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘PyFloat2Pyxmpz’:
> 
> src/gmpy2.c:542: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:470: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2Pympq’:src/gmpy2.c: At top level:
> 
> 
> 
> src/gmpy2.c:562: error: syntax error before ‘*’ token
> 
> src/gmpy2.c:473: error: ‘newob’ undeclared (first use in this function)src/gmpy2.c: In function ‘Pympz2Pympq’:
> 
> 
> 
> src/gmpy2.c:565: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:569: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:573: error: syntax error before ‘*’ token
> 
> src/gmpy2.c:477: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2Pympq’:
> 
> src/gmpy2.c:576: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:580: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:584: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2Pympz’:
> 
> src/gmpy2.c:587: error: ‘newob’ undeclared (first use in this function)src/gmpy2.c: At top level:
> 
> 
> 
> src/gmpy2.c:591: error: syntax error before ‘)’ tokensrc/gmpy2.c:482: error: syntax error before ‘*’ token
> 
> 
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:595: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyInt2Pympz’:src/gmpy2.c: In function ‘Pympq2Pyxmpz’:
> 
> 
> 
> src/gmpy2.c:598: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:485: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:602: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:609: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyLong2Pympz’:
> 
> src/gmpy2.c:612: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:615: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:619: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyLong2Pyxmpz’:
> 
> src/gmpy2.c:622: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:493: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyInt2Pyxmpz’:
> 
> src/gmpy2.c:496: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:625: error: syntax error before ‘)’ tokensrc/gmpy2.c:504: error: syntax error before ‘*’ token
> 
> 
> 
> src/gmpy2.c: In function ‘PyInt2Pympq’:
> 
> src/gmpy2.c:507: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:516: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c: In function ‘PyFloat2Pympz’:
> 
> src/gmpy2.c:519: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:629: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyLong2Pympq’:
> 
> src/gmpy2.c:632: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:539: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyFloat2Pyxmpz’:
> 
> src/gmpy2.c:542: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:562: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2Pympq’:
> 
> src/gmpy2.c:565: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:569: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:573: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2Pympq’:
> 
> src/gmpy2.c:576: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:580: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:642: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:584: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2Pympz’:
> 
> src/gmpy2.c:587: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘PyFloat2Pympq’:
> 
> src/gmpy2.c:591: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:645: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:595: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2Pyxmpz’:
> 
> src/gmpy2.c:598: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:602: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:609: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyLong2Pympz’:
> 
> src/gmpy2.c:612: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:615: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:619: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyLong2Pyxmpz’:
> 
> src/gmpy2.c:622: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:625: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:629: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyLong2Pympq’:
> 
> src/gmpy2.c:632: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:642: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyFloat2Pympq’:
> 
> src/gmpy2.c:645: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:677: error: syntax error before ‘z’
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:677: error: syntax error before ‘z’
> 
> src/gmpy2.c: In function ‘mpz_set_PyStr’:
> 
> src/gmpy2.c:686: error: ‘s’ undeclared (first use in this function)src/gmpy2.c: In function ‘mpz_set_PyStr’:
> 
> src/gmpy2.c:686: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy2.c:709: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:731: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> 
> 
> src/gmpy2.c:740: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyStr2Pympz’:
> 
> src/gmpy2.c:743: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:755: error: syntax error before ‘*’ token
> 
> src/gmpy2.c:709: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘PyStr2Pyxmpz’:
> 
> src/gmpy2.c:758: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:731: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:783: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyStr2Pympq’:
> 
> src/gmpy2.c:786: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:740: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyStr2Pympz’:
> 
> src/gmpy2.c:743: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:755: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘PyStr2Pyxmpz’:
> 
> src/gmpy2.c:758: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:783: error: syntax error before ‘*’ tokensrc/gmpy2.c:858: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy2.c: In function ‘PyStr2Pympq’:
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:898: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2PyLong’:
> 
> src/gmpy2.c:900: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:786: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:900: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:904: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2PyLong’:
> 
> src/gmpy2.c:906: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:906: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:910: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2PyLong’:
> 
> src/gmpy2.c:913: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy2.c:913: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:923: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz_To_Integer’:
> 
> src/gmpy2.c:928: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:936: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz_To_Integer’:
> 
> src/gmpy2.c:941: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:950: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2PyInt’:
> 
> src/gmpy2.c:953: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy2.c:953: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:964: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2PyFloat’:
> 
> src/gmpy2.c:966: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:972: error: syntax error before ‘*’ tokensrc/gmpy2.c:858: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:898: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2PyLong’:
> 
> src/gmpy2.c:900: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:900: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:904: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2PyLong’:
> 
> src/gmpy2.c:906: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy2.c: In function ‘Pympq2PyFloat’:
> 
> src/gmpy2.c:974: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:986: error: syntax error before ‘z’
> 
> src/gmpy2.c: In function ‘mpz2binary’:
> 
> src/gmpy2.c:993: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1022: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2binary’:
> 
> src/gmpy2.c:1024: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1028: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2binary’:
> 
> src/gmpy2.c:1030: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1040: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2binary’:
> 
> src/gmpy2.c:1048: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1097: error: syntax error before ‘z’
> 
> src/gmpy2.c: In function ‘mpz_ascii’:
> 
> src/gmpy2.c:1104: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:1119: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy2.c:1128: error: ‘option’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1208: error: syntax error before ‘z’
> 
> src/gmpy2.c: In function ‘xmpz_ascii’:
> 
> src/gmpy2.c:1215: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:1230: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy2.c:1239: error: ‘option’ undeclared (first use in this function)
> 
> src/gmpy2.c:906: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:910: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2PyLong’:
> 
> src/gmpy2.c:913: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy2.c:913: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1313: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: At top level:src/gmpy2.c: In function ‘Pympz_ascii’:
> 
> 
> 
> src/gmpy2.c:923: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz_To_Integer’:
> 
> src/gmpy2.c:928: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:936: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz_To_Integer’:
> 
> src/gmpy2.c:941: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:950: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2PyInt’:
> 
> src/gmpy2.c:953: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy2.c:953: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:964: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2PyFloat’:
> 
> src/gmpy2.c:966: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:972: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2PyFloat’:
> 
> src/gmpy2.c:974: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:986: error: syntax error before ‘z’
> 
> src/gmpy2.c: In function ‘mpz2binary’:
> 
> src/gmpy2.c:993: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1022: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2binary’:
> 
> src/gmpy2.c:1024: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1028: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2binary’:
> 
> src/gmpy2.c:1030: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1040: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2binary’:
> 
> src/gmpy2.c:1048: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1097: error: syntax error before ‘z’
> 
> src/gmpy2.c: In function ‘mpz_ascii’:
> 
> src/gmpy2.c:1104: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:1119: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy2.c:1128: error: ‘option’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1208: error: syntax error before ‘z’
> 
> src/gmpy2.c: In function ‘xmpz_ascii’:
> 
> src/gmpy2.c:1215: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:1230: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy2.c:1239: error: ‘option’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1313: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz_ascii’:
> 
> src/gmpy2.c:1315: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c:1315: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:1315: error: ‘option’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1319: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz_ascii’:
> 
> src/gmpy2.c:1321: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c:1321: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:1321: error: ‘option’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1324: error: syntax error before ‘q’
> 
> src/gmpy2.c: In function ‘qden_1’:
> 
> src/gmpy2.c:1326: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1330: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq_ascii’:
> 
> src/gmpy2.c:1335: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c:1335: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:1342: error: ‘option’ undeclared (first use in this function)
> 
> src/gmpy2.c:1315: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c:1315: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:1315: error: ‘option’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1319: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz_ascii’:
> 
> src/gmpy2.c:1321: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c:1321: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:1321: error: ‘option’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1324: error: syntax error before ‘q’
> 
> src/gmpy2.c: In function ‘qden_1’:
> 
> src/gmpy2.c:1326: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1330: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq_ascii’:
> 
> src/gmpy2.c:1335: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c:1335: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy2.c:1342: error: ‘option’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1499: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘anynum2Pympq’:
> 
> src/gmpy2.c:1502: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:1506: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1554: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq_From_Rational’:
> 
> src/gmpy2.c:1557: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:1561: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1592: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘anynum2Pympz’:
> 
> src/gmpy2.c:1595: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:1596: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy2.c:1600: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1646: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘anynum2Pyxmpz’:
> 
> src/gmpy2.c:1649: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:1650: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1706: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz_From_Integer’:
> 
> src/gmpy2.c:1709: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:1713: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘clong_From_Integer’:
> 
> src/gmpy2.c:1754: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘ssize_t_From_Integer’:
> 
> src/gmpy2.c:1784: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:1785: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:1789: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘Pympz_convert_arg’:
> 
> src/gmpy2.c:1811: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:src/gmpy2.c: In function ‘Pympq_convert_arg’:
> 
> src/gmpy2.c:1833: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1852: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2str’:
> 
> src/gmpy2.c:1855: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1859: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2repr’:
> 
> 
> 
> src/gmpy2.c:1862: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c:1499: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1867: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2str’:
> 
> src/gmpy2.c:1870: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘anynum2Pympq’:
> 
> src/gmpy2.c: At top level:src/gmpy2.c:1502: error: ‘newob’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy2.c:1874: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2repr’:
> 
> src/gmpy2.c:1877: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c:1506: error: syntax error before ‘)’ tokensrc/gmpy2.c: At top level:
> 
> src/gmpy2.c:1882: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2str’:
> 
> src/gmpy2.c:1885: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1889: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2repr’:
> 
> src/gmpy2.c:1892: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘Pygmpy_mpz’:
> 
> src/gmpy2.c:1909: error: ‘result’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy2.c: In function ‘Pygmpy_xmpz’:
> 
> src/gmpy2.c:1973: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1554: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq_From_Rational’:
> 
> src/gmpy2.c:1557: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:1561: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘Pygmpy_mpq’:
> 
> src/gmpy2.c:2037: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy2.c:2037: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1592: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘anynum2Pympz’:
> 
> src/gmpy2.c:1595: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:1596: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy2.c:1600: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1646: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘anynum2Pyxmpz’:
> 
> src/gmpy2.c:1649: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:1650: error: ‘temp’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:2120:
> 
> src/gmpy_mpz.c: In function ‘Pympz_digits’:
> 
> src/gmpy_mpz.c:42: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1706: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz_From_Integer’:
> 
> src/gmpy2.c:1709: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c:1713: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_digits’:
> 
> src/gmpy_mpz.c:55: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘clong_From_Integer’:
> 
> src/gmpy2.c:1754: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘ssize_t_From_Integer’:
> 
> src/gmpy2.c:1784: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:1785: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:1789: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘Pympz_convert_arg’:
> 
> src/gmpy2.c:1811: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_numdigits’:
> 
> src/gmpy_mpz.c:89: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘Pympq_convert_arg’:
> 
> src/gmpy2.c:1833: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1852: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2str’:
> 
> src/gmpy2.c:1855: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1859: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympz2repr’:
> 
> src/gmpy2.c:1862: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1867: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2str’:
> 
> src/gmpy2.c:1870: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1874: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pyxmpz2repr’:
> 
> src/gmpy2.c:1877: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1882: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2str’:
> 
> src/gmpy2.c:1885: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: At top level:
> 
> src/gmpy2.c:1889: error: syntax error before ‘*’ token
> 
> src/gmpy2.c: In function ‘Pympq2repr’:
> 
> src/gmpy2.c:1892: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘Pygmpy_mpz’:
> 
> src/gmpy2.c:1909: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_length’:
> 
> src/gmpy_mpz.c:107: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:110: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:111: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:115: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:123: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_mask’:
> 
> src/gmpy_mpz.c:139: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_xbit_mask’:
> 
> src/gmpy_mpz.c:171: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_scan0’:
> 
> src/gmpy_mpz.c:221: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:223: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:232: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_scan1’:
> 
> src/gmpy_mpz.c:264: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:266: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:275: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_popcount’:
> 
> src/gmpy_mpz.c:291: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:294: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:296: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_bit_test’:
> 
> src/gmpy_mpz.c:323: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:343: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_test’:
> 
> src/gmpy_mpz.c:375: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_bit_clear’:
> 
> src/gmpy_mpz.c:393: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:415: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_clear’:
> 
> src/gmpy_mpz.c:432: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:447: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_bit_set’:
> 
> src/gmpy_mpz.c:464: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:486: error: syntax error before ‘)’ token
> 
> src/gmpy2.c: In function ‘Pygmpy_xmpz’:
> 
> src/gmpy2.c:1973: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘Pygmpy_mpq’:
> 
> src/gmpy2.c:2037: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy2.c:2037: error: ‘temp’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:2120:
> 
> src/gmpy_mpz.c: In function ‘Pympz_digits’:
> 
> src/gmpy_mpz.c:42: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_digits’:
> 
> src/gmpy_mpz.c:55: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_numdigits’:
> 
> src/gmpy_mpz.c:89: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_length’:
> 
> src/gmpy_mpz.c:107: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:110: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:111: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:115: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:123: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_mask’:
> 
> src/gmpy_mpz.c:139: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_set’:
> 
> src/gmpy_mpz.c:503: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:518: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_bit_flip’:
> 
> src/gmpy_mpz.c:533: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:555: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_flip’:
> 
> src/gmpy_mpz.c:572: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:587: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_iroot’:
> 
> src/gmpy_mpz.c:602: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:614: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:626: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_iroot_rem’:
> 
> src/gmpy_mpz.c:643: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:643: error: ‘y’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:655: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:671: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_sign’:
> 
> src/gmpy_mpz.c:682: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:685: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:688: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:704: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_abs’:
> 
> src/gmpy_mpz.c:706: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:710: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:715: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_abs’:
> 
> src/gmpy_mpz.c:717: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:722: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_neg’:
> 
> src/gmpy_mpz.c:724: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:728: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:733: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_neg’:
> 
> src/gmpy_mpz.c:735: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:740: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_pos’:
> 
> src/gmpy_mpz.c:742: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:747: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_square’:
> 
> src/gmpy_mpz.c:755: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:755: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:761: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:761: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:764: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:764: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:772: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:772: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_pow’:
> 
> src/gmpy_mpz.c:786: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:786: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:786: error: ‘tempe’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:786: error: ‘tempm’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:822: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:822: error: syntax error before ‘mm’
> 
> src/gmpy_mpz.c:829: error: ‘mm’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:833: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:857: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:875: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_nonzero’:
> 
> src/gmpy_mpz.c:877: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:881: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_nonzero’:
> 
> src/gmpy_mpz.c:883: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:889: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_com’:
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_xbit_mask’:
> 
> src/gmpy_mpz.c:171: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:891: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:895: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:895: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:900: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_com’:
> 
> src/gmpy_mpz.c:902: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_and’:
> 
> src/gmpy_mpz.c:941: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_ior’:
> 
> src/gmpy_mpz.c:942: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_scan0’:
> 
> src/gmpy_mpz.c:221: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:223: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:232: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_xor’:
> 
> src/gmpy_mpz.c:943: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_rshift’:
> 
> src/gmpy_mpz.c:950: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:950: error: ‘tempa’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:950: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_scan1’:
> 
> src/gmpy_mpz.c:264: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:266: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:275: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:965: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:982: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:986: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_popcount’:
> 
> src/gmpy_mpz.c:291: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:294: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_lshift’:
> 
> src/gmpy_mpz.c:1008: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:296: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1008: error: ‘tempa’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1008: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1023: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_bit_test’:
> 
> src/gmpy_mpz.c:323: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1040: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1044: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:343: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:1064: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_oct’:
> 
> src/gmpy_mpz.c:1066: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_test’:
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:375: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1070: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_oct’:
> 
> src/gmpy_mpz.c:1072: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:1076: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_hex’:
> 
> src/gmpy_mpz.c:1078: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:1082: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_hex’:
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_bit_clear’:
> 
> src/gmpy_mpz.c:1084: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:1089: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_hash’:
> 
> src/gmpy_mpz.c:1104: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_gcd’:
> 
> src/gmpy_mpz.c:1120: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1120: error: ‘tempa’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1120: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1134: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1134: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_lcm’:
> 
> src/gmpy_mpz.c:1161: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1161: error: ‘tempa’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1161: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:393: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1175: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1175: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:415: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_clear’:
> 
> src/gmpy_mpz.c:432: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:447: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_gcdext’:
> 
> src/gmpy_mpz.c:1203: error: ‘g’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1203: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1203: error: ‘t’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1203: error: ‘tempa’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1203: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_bit_set’:
> 
> src/gmpy_mpz.c:464: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:486: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1226: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1226: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_set’:
> 
> src/gmpy_mpz.c:503: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:518: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_bit_flip’:
> 
> src/gmpy_mpz.c:533: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:555: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1241: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1241: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bit_flip’:
> 
> src/gmpy_mpz.c:572: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:587: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_iroot’:
> 
> src/gmpy_mpz.c:602: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_divm’:
> 
> src/gmpy_mpz.c:1260: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1260: error: ‘num’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1260: error: ‘den’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1260: error: ‘mod’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1261: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1261: error: syntax error before ‘gcdz’
> 
> src/gmpy_mpz.c:614: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1293: error: ‘gcdz’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:626: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_fac’:
> 
> src/gmpy_mpz.c:1328: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_fib’:
> 
> src/gmpy_mpz.c:1355: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_iroot_rem’:
> 
> src/gmpy_mpz.c:643: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:643: error: ‘y’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1370: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_fib2’:
> 
> src/gmpy_mpz.c:1383: error: ‘fib1’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1383: error: ‘fib2’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:655: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:671: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_lucas’:
> 
> src/gmpy_mpz.c:1411: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_lucas2’:
> 
> src/gmpy_mpz.c:1439: error: ‘luc1’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1439: error: ‘luc2’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_sign’:
> 
> src/gmpy_mpz.c:682: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:685: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:688: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_bincoef’:
> 
> src/gmpy_mpz.c:1473: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1489: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_isqrt’:
> 
> src/gmpy_mpz.c:1502: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1505: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1511: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1514: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1520: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_isqrt_rem’:
> 
> src/gmpy_mpz.c:1545: error: ‘root’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1545: error: ‘rem’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1550: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1567: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_remove’:
> 
> src/gmpy_mpz.c:1584: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1590: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1602: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1602: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_invert’:
> 
> src/gmpy_mpz.c:1618: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1618: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1618: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1632: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1637: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1637: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_hamdist’:
> 
> src/gmpy_mpz.c:1680: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1680: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_divexact’:
> 
> src/gmpy_mpz.c:1695: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1695: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1695: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1708: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1713: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1713: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1725: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_is_square’:
> 
> src/gmpy_mpz.c:1750: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1753: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1756: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_is_power’:
> 
> src/gmpy_mpz.c:1787: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1790: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1793: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:704: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_abs’:
> 
> src/gmpy_mpz.c:706: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:710: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:715: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_abs’:
> 
> src/gmpy_mpz.c:717: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:722: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_neg’:
> 
> src/gmpy_mpz.c:724: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:728: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:733: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_is_prime’:src/gmpy_mpz.c: In function ‘Pyxmpz_neg’:
> 
> 
> 
> src/gmpy_mpz.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_next_prime’:
> 
> src/gmpy_mpz.c:1854: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1859: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1864: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:735: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:740: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_pos’:
> 
> src/gmpy_mpz.c: In function ‘Pympz_jacobi’:
> 
> src/gmpy_mpz.c:742: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1890: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:747: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_square’:
> 
> src/gmpy_mpz.c:1896: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1896: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:755: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:755: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:761: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:761: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:764: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:764: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:772: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:772: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_pow’:
> 
> src/gmpy_mpz.c:786: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:786: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:786: error: ‘tempe’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:786: error: ‘tempm’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:822: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:822: error: syntax error before ‘mm’
> 
> src/gmpy_mpz.c:829: error: ‘mm’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:833: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:857: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:875: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_nonzero’:
> 
> src/gmpy_mpz.c:877: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:881: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_nonzero’:
> 
> src/gmpy_mpz.c:883: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:889: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_com’:
> 
> src/gmpy_mpz.c:891: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:895: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:895: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:900: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_com’:
> 
> src/gmpy_mpz.c:902: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_and’:
> 
> src/gmpy_mpz.c:941: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_ior’:
> 
> src/gmpy_mpz.c:942: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_xor’:
> 
> src/gmpy_mpz.c:943: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_rshift’:
> 
> src/gmpy_mpz.c:950: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:950: error: ‘tempa’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:950: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:965: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:982: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:986: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_lshift’:
> 
> src/gmpy_mpz.c:1008: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1008: error: ‘tempa’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1008: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1023: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1040: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1044: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:1064: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_oct’:
> 
> src/gmpy_mpz.c:1066: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:1070: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_oct’:
> 
> src/gmpy_mpz.c:1072: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:1076: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_hex’:
> 
> src/gmpy_mpz.c:1078: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:1082: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_hex’:
> 
> src/gmpy_mpz.c:1084: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:1089: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_hash’:
> 
> src/gmpy_mpz.c:1104: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_gcd’:
> 
> src/gmpy_mpz.c:1120: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1120: error: ‘tempa’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1120: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1134: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1134: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_lcm’:
> 
> src/gmpy_mpz.c:1161: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1161: error: ‘tempa’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1161: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1175: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1175: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_legendre’:
> 
> src/gmpy_mpz.c:1914: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1920: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1920: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_kronecker’:
> 
> src/gmpy_mpz.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1947: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1949: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1949: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1953: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1953: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_is_even’:
> 
> src/gmpy_mpz.c:1976: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1979: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1982: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_is_odd’:
> 
> src/gmpy_mpz.c:2010: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2013: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:2016: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_gcdext’:
> 
> src/gmpy_mpz.c:1203: error: ‘g’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1203: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1203: error: ‘t’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1203: error: ‘tempa’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1203: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_make_mpz’:
> 
> src/gmpy_mpz.c:2042: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2046: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:2047: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:2056: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_nbits’:
> 
> src/gmpy_mpz.c:2058: error: ‘obj’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:2062: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_subscript’:
> 
> src/gmpy_mpz.c:2064: error: ‘item’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2071: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1226: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1226: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:2094: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:2098: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1241: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1241: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_divm’:
> 
> src/gmpy_mpz.c:1260: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1260: error: ‘num’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1260: error: ‘den’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1260: error: ‘mod’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:1261: error: ‘mpz_t’ undeclared (first use in this function)src/gmpy_mpz.c:2111: error: syntax error before ‘*’ token
> 
> 
> 
> src/gmpy_mpz.c:1261: error: syntax error before ‘gcdz’
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_assign_subscript’:
> 
> src/gmpy_mpz.c:2113: error: ‘item’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2120: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2122: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1293: error: ‘gcdz’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2164: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_fac’:
> 
> src/gmpy_mpz.c: At top level:src/gmpy_mpz.c:1328: error: ‘result’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_mpz.c:2205: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_nbits’:
> 
> src/gmpy_mpz.c:2207: error: ‘obj’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:2211: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_subscript’:
> 
> src/gmpy_mpz.c:2213: error: ‘item’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_fib’:
> 
> src/gmpy_mpz.c:1355: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2220: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1370: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:2243: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:2247: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_fib2’:
> 
> src/gmpy_mpz.c:1383: error: ‘fib1’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1383: error: ‘fib2’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_format’:
> 
> src/gmpy_mpz.c:2392: error: syntax error before ‘)’ token
> 
> In file included from src/gmpy2.c:2121:
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_divmod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:46: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:46: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:46: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:67: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c:68: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_div_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:96: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:96: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:118: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_mod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:140: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:140: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:162: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_divmod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:192: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:192: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:192: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:213: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c:214: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_div_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:242: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:242: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:264: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_mod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:287: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:287: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:309: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c:317: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_divmod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:339: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:339: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:339: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:360: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c:361: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_lucas’:
> 
> src/gmpy_mpz.c:1411: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_lucas2’:
> 
> src/gmpy_mpz.c:1439: error: ‘luc1’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1439: error: ‘luc2’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_bincoef’:
> 
> src/gmpy_mpz.c:1473: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1489: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_isqrt’:
> 
> src/gmpy_mpz.c:1502: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1505: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1511: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1514: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1520: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_isqrt_rem’:
> 
> src/gmpy_mpz.c:1545: error: ‘root’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1545: error: ‘rem’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1550: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1567: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_remove’:
> 
> src/gmpy_mpz.c:1584: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1590: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1602: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1602: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_invert’:
> 
> src/gmpy_mpz.c:1618: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1618: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1618: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1632: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1637: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1637: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_hamdist’:
> 
> src/gmpy_mpz.c:1680: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1680: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_div_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:388: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:388: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:409: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_mod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:432: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:432: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:454: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_pack’:
> 
> src/gmpy_mpz_divmod2exp.c:490: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:490: error: syntax error before ‘temp’
> 
> src/gmpy_mpz_divmod2exp.c:491: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:491: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:522: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:524: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_unpack’:
> 
> src/gmpy_mpz_divmod2exp.c:576: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:576: error: syntax error before ‘temp’
> 
> src/gmpy_mpz_divmod2exp.c:577: error: ‘mp_limb_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:578: error: ‘item’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:578: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:623: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:624: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:639: error: ‘extra’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:2122:
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_divmod’:
> 
> src/gmpy_mpz_divmod.c:42: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:42: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:42: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:42: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:54: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:61: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:61: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:75: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_div’:
> 
> src/gmpy_mpz_divmod.c:100: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:100: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:100: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:113: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:118: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:118: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:130: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_mod’:
> 
> src/gmpy_mpz_divmod.c:151: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:151: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:151: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:164: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:169: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:169: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:181: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_divmod’:
> 
> src/gmpy_mpz_divmod.c:210: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:210: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:210: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:210: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:222: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:229: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:229: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:243: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_div’:
> 
> src/gmpy_mpz_divmod.c:268: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:268: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:268: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:281: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:286: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:286: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:298: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_mod’:
> 
> src/gmpy_mpz_divmod.c:319: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:319: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:319: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:332: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:337: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:337: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:349: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pygmpy_divexact’:
> 
> src/gmpy_mpz.c:1695: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1695: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1695: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_divmod’:
> 
> src/gmpy_mpz_divmod.c:377: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:377: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:377: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:377: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1708: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1713: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1713: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:389: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1725: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:410: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_is_square’:
> 
> src/gmpy_mpz.c:1750: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1753: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1756: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_is_power’:
> 
> src/gmpy_mpz.c:1787: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_div’:
> 
> src/gmpy_mpz_divmod.c:435: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:435: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:435: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1790: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1793: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:448: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:453: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:453: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:465: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_mod’:
> 
> src/gmpy_mpz.c: In function ‘Pympz_is_prime’:
> 
> src/gmpy_mpz_divmod.c:486: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:486: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:486: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:499: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:504: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:504: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:516: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_next_prime’:
> 
> src/gmpy_mpz.c:1854: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1859: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1864: error: syntax error before ‘)’ token
> 
> In file included from src/gmpy2.c:2123:
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_add’:
> 
> src/gmpy_mpz_inplace.c:33: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:34: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:34: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:42: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:42: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:50: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:52: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:55: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:57: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_jacobi’:
> 
> src/gmpy_mpz.c:1890: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1896: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1896: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_sub’:
> 
> src/gmpy_mpz_inplace.c:69: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:70: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:70: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:78: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:78: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:86: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:88: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:91: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:93: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_mul’:
> 
> src/gmpy_mpz_inplace.c:105: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:106: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:106: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_legendre’:
> 
> src/gmpy_mpz.c:1914: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:122: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:124: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:127: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1920: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1920: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_floordiv’:
> 
> src/gmpy_mpz_inplace.c:144: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:145: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: In function ‘Pympz_kronecker’:
> 
> src/gmpy_mpz.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1941: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1943: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1947: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1949: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1949: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1953: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1953: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_is_even’:
> 
> src/gmpy_mpz.c:1976: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:1979: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:1982: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_is_odd’:
> 
> src/gmpy_mpz.c:2010: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2013: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:2016: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_make_mpz’:
> 
> src/gmpy_mpz.c:2042: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2046: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:2047: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:2056: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_nbits’:
> 
> src/gmpy_mpz.c:2058: error: ‘obj’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:2062: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_subscript’:
> 
> src/gmpy_mpz.c:2064: error: ‘item’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2071: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2094: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:2098: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:2111: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pyxmpz_assign_subscript’:
> 
> src/gmpy_mpz.c:2113: error: ‘item’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2120: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2122: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2164: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:2205: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_nbits’:
> 
> src/gmpy_mpz.c:2207: error: ‘obj’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c: At top level:
> 
> src/gmpy_mpz.c:2211: error: syntax error before ‘*’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_subscript’:
> 
> src/gmpy_mpz.c:2213: error: ‘item’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2220: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpz.c:2243: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c:2247: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz.c: In function ‘Pympz_format’:
> 
> src/gmpy_mpz.c:2392: error: syntax error before ‘)’ token
> 
> In file included from src/gmpy2.c:2121:
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_divmod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:46: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:46: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:46: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:67: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c:68: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_div_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:96: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:96: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:118: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_c_mod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:140: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:140: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:162: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_divmod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:192: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:192: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:192: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:213: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c:214: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_div_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:242: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:242: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:264: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_f_mod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:287: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:287: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:309: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c:317: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_divmod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:339: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:339: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:339: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:360: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c:361: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_div_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:388: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:388: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:409: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_t_mod_2exp’:
> 
> src/gmpy_mpz_divmod2exp.c:432: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:432: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:454: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_pack’:
> 
> src/gmpy_mpz_divmod2exp.c:490: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:490: error: syntax error before ‘temp’
> 
> src/gmpy_mpz_divmod2exp.c:491: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:491: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:522: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:524: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c: In function ‘Pygmpy_unpack’:
> 
> src/gmpy_mpz_divmod2exp.c:576: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:576: error: syntax error before ‘temp’
> 
> src/gmpy_mpz_divmod2exp.c:577: error: ‘mp_limb_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:578: error: ‘item’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:578: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:623: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:624: error: ‘mp_bits_per_limb’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod2exp.c:639: error: ‘extra’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:2122:
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_divmod’:
> 
> src/gmpy_mpz_divmod.c:42: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:42: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:42: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:42: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:54: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:61: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:61: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:75: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_div’:
> 
> src/gmpy_mpz_divmod.c:100: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:100: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:100: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:113: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:118: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:118: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:130: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_c_mod’:
> 
> src/gmpy_mpz_divmod.c:151: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:151: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:151: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:164: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:169: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:169: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:181: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_divmod’:
> 
> src/gmpy_mpz_divmod.c:210: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:210: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:210: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:210: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:222: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:229: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:229: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:243: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_div’:
> 
> src/gmpy_mpz_divmod.c:268: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:268: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:145: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:153: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:157: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:157: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:165: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:167: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:173: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:175: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_rem’:
> 
> src/gmpy_mpz_inplace.c:188: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:189: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:189: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:198: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:202: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:202: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:210: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:212: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:215: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:220: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_rshift’:
> 
> src/gmpy_mpz_inplace.c:232: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:240: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:245: error: syntax error before ‘)’ tokensrc/gmpy_mpz_divmod.c:268: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:281: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:286: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:286: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:298: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_f_mod’:
> 
> src/gmpy_mpz_divmod.c:319: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:319: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:319: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:332: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:337: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:337: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:349: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_divmod’:
> 
> src/gmpy_mpz_divmod.c:377: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:377: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:377: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:377: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:389: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:410: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_div’:
> 
> src/gmpy_mpz_divmod.c:435: error: ‘q’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:435: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:435: error: ‘tempy’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:448: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:453: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:453: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:465: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c: In function ‘Pygmpy_t_mod’:
> 
> src/gmpy_mpz_divmod.c:486: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:486: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpz_divmod.c:486: error: ‘tempy’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_mpz_divmod.c:499: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:504: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:504: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:250: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:251: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_divmod.c:516: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:263: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_lshift’:
> 
> src/gmpy_mpz_inplace.c:279: error: ‘rz’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:2123:
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_add’:
> 
> src/gmpy_mpz_inplace.c:33: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:34: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:287: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:34: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:42: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:292: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:42: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:297: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:298: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:50: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:52: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:55: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:57: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:310: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_sub’:
> 
> src/gmpy_mpz_inplace.c:69: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:70: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:70: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:78: error: syntax error before ‘)’ tokensrc/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_pow’:
> 
> 
> 
> src/gmpy_mpz_inplace.c:326: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:326: error: ‘e’ undeclared (first use in this function)src/gmpy_mpz_inplace.c:78: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:86: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:88: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:91: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:93: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_mul’:
> 
> src/gmpy_mpz_inplace.c:105: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:106: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:106: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:122: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:124: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:127: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_floordiv’:
> 
> src/gmpy_mpz_inplace.c:144: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:145: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:145: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:153: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:354: error: syntax error before ‘)’ tokensrc/gmpy_mpz_inplace.c:157: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:157: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:165: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:167: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:173: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpz_inplace.c:175: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_rem’:
> 
> src/gmpy_mpz_inplace.c:188: error: ‘rz’ undeclared (first use in this function)In file included from src/gmpy2.c:2124:
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_add’:
> 
> src/gmpy_xmpz_inplace.c:35: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:35: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:44: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:46: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:46: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:49: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:49: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:51: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:51: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpz_inplace.c:189: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:189: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:198: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:202: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:202: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:210: error: ‘tempz’ undeclared (first use in this function)src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_sub’:
> 
> src/gmpy_xmpz_inplace.c:73: error: ‘mpz_t’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_xmpz_inplace.c:73: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:212: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:215: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:220: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:81: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:83: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:83: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:86: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:86: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:88: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:88: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_rshift’:
> 
> src/gmpy_mpz_inplace.c:232: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:240: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:245: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_mul’:
> 
> src/gmpy_mpz_inplace.c:250: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:110: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:110: error: syntax error before ‘tempz’
> 
> src/gmpy_mpz_inplace.c:251: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:118: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:120: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:120: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:123: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:123: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_floordiv’:
> 
> src/gmpy_xmpz_inplace.c:147: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:147: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:155: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:157: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:157: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:163: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:163: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:165: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:165: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:166: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:166: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:173: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_rem’:
> 
> src/gmpy_xmpz_inplace.c:192: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:192: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:200: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:202: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:202: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:205: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:205: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:210: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:210: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:218: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_rshift’:
> 
> src/gmpy_xmpz_inplace.c:248: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:248: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:258: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:262: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:266: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:267: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:267: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_lshift’:
> 
> src/gmpy_xmpz_inplace.c:293: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:293: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:301: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:305: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:309: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:310: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:310: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_pow’:
> 
> src/gmpy_xmpz_inplace.c:325: error: ‘e’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_and’:
> 
> src/gmpy_xmpz_inplace.c:366: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:366: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:377: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:391: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:391: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_xor’:
> 
> src/gmpy_xmpz_inplace.c:407: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:407: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:418: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:432: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:432: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:263: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_ior’:
> 
> src/gmpy_xmpz_inplace.c:448: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:448: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_lshift’:
> 
> src/gmpy_mpz_inplace.c:279: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:459: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:287: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:473: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:473: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:292: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:297: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:298: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:310: error: syntax error before ‘)’ token
> 
> In file included from src/gmpy2.c:2125:
> 
> src/gmpy_mpq.c: In function ‘Pympq_digits’:
> 
> src/gmpy_mpq.c:42: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c: In function ‘Pympz_inplace_pow’:
> 
> src/gmpy_mpz_inplace.c:326: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpz_inplace.c:326: error: ‘e’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: In function ‘Pympq_sign’:
> 
> src/gmpy_mpq.c:51: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:54: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:57: error: syntax error before ‘)’ token
> 
> src/gmpy_mpz_inplace.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_numer’:
> 
> src/gmpy_mpq.c:79: error: ‘result’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:2124:
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_add’:
> 
> src/gmpy_xmpz_inplace.c:35: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:35: error: syntax error before ‘tempz’
> 
> src/gmpy_mpq.c:86: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:44: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:46: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:92: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_getnumer’:
> 
> src/gmpy_mpq.c:94: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:97: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:97: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: In function ‘Pympq_denom’:
> 
> src/gmpy_mpq.c:108: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:115: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:121: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_getdenom’:
> 
> src/gmpy_mpq.c:123: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:126: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: In function ‘isOne’:
> 
> src/gmpy_mpq.c:140: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:144: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:147: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:156: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:156: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_xmpz_inplace.c:46: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:49: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:49: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:51: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:51: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:58: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_qdiv’:
> 
> src/gmpy_mpq.c:186: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_sub’:
> 
> src/gmpy_xmpz_inplace.c:73: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:193: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:73: error: syntax error before ‘tempz’
> 
> src/gmpy_mpq.c:193: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:81: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:220: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:232: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:239: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:239: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:282: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_neg’:
> 
> src/gmpy_mpq.c:282: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:282: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:285: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_abs’:
> 
> src/gmpy_mpq.c:287: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:290: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:296: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_pos’:
> 
> src/gmpy_mpq.c:298: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: In function ‘Pympq_square’:
> 
> src/gmpy_mpq.c:305: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:305: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:311: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:311: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:314: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:314: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:322: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:322: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_pow’:
> 
> src/gmpy_mpq.c:332: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:332: error: ‘tempbq’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:333: error: ‘tempez’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:335: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:335: error: ‘tempbf’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:335: error: ‘tempef’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:414: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:426: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_nonzero’:
> 
> src/gmpy_mpq.c:428: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:432: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_hash’:
> 
> src/gmpy_mpq.c:475: error: ‘self’ undeclared (first use in this function)
> 
> In file included from src/gmpy2.c:2128:
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:34: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:35: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2Pympfr’:
> 
> src/gmpy_mpfr.c:37: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:40: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:41: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:41: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:43: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:44: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:48: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:49: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘PyFloat2Pympfr’:
> 
> src/gmpy_mpfr.c:51: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:54: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:61: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:62: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:66: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:67: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘Pympz2Pympfr’:
> 
> src/gmpy_mpfr.c:69: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:72: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:73: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:73: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:74: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:78: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:79: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘Pyxmpz2Pympfr’:
> 
> src/gmpy_mpfr.c:81: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:84: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:85: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:85: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:86: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:90: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2Pympz’:
> 
> src/gmpy_mpfr.c:93: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:97: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:102: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:113: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2Pyxmpz’:
> 
> src/gmpy_mpfr.c:116: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:120: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:125: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:131: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:131: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:136: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2Pympq’:
> 
> src/gmpy_mpfr.c:139: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:142: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:143: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘Pympq2Pympfr’:
> 
> src/gmpy_mpfr.c:145: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:148: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:149: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:149: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:150: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:154: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:155: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘PyLong2Pympfr’:
> 
> src/gmpy_mpfr.c:157: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:158: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:162: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:168: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:169: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘PyInt2Pympfr’:
> 
> src/gmpy_mpfr.c:171: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:174: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:175: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:176: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:181: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2PyInt’:
> 
> src/gmpy_mpfr.c:184: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:184: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:194: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:195: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘PyStr2Pympfr’:
> 
> src/gmpy_mpfr.c:197: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:199: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:199: error: syntax error before ‘prec’
> 
> src/gmpy_mpfr.c:205: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:219: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:220: error: ‘prec’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:222: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:224: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:242: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:243: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:254: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2PyLong’:
> 
> src/gmpy_mpfr.c:257: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:257: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:267: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2PyFloat’:
> 
> src/gmpy_mpfr.c:269: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:269: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:302: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2binary’:
> 
> src/gmpy_mpfr.c:308: error: ‘mpfr_exp_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:308: error: syntax error before ‘the_exp’
> 
> src/gmpy_mpfr.c:313: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:325: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:332: error: ‘the_exp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:333: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:333: warning: assignment makes pointer from integer without a cast
> 
> src/gmpy_mpfr.c:345: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:405: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_ascii’:
> 
> src/gmpy_mpfr.c:409: error: ‘mpfr_exp_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:409: error: syntax error before ‘the_exp’
> 
> src/gmpy_mpfr.c:413: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:417: error: ‘digits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:423: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:443: error: ‘the_exp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:443: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:443: warning: assignment makes pointer from integer without a cast
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:463: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:464: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_From_Real’:
> 
> src/gmpy_mpfr.c:466: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:467: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:469: error: ‘obj’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:469: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:469: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:472: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:472: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:473: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:483: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:484: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:484: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:485: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:486: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:83: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:83: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:86: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:86: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:88: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:88: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:95: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_mul’:
> 
> src/gmpy_xmpz_inplace.c:110: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:110: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:118: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:120: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:120: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:123: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:123: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:130: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_floordiv’:
> 
> src/gmpy_xmpz_inplace.c:147: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:147: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:155: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:157: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:157: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:163: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:163: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:165: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:165: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:166: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:166: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:173: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:177: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_rem’:
> 
> src/gmpy_xmpz_inplace.c:192: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:192: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:200: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:202: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:202: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:205: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:205: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:210: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:210: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:218: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:222: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_rshift’:
> 
> src/gmpy_xmpz_inplace.c:248: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:248: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:258: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:262: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:266: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:267: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:267: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_lshift’:
> 
> src/gmpy_xmpz_inplace.c:293: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:293: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:301: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:305: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:309: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:310: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:310: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_pow’:
> 
> src/gmpy_xmpz_inplace.c:325: error: ‘e’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_and’:
> 
> src/gmpy_xmpz_inplace.c:366: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:366: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:371: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:377: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:391: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_convert_arg’:
> 
> src/gmpy_xmpz_inplace.c:391: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:545: error: ‘newob’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:563: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2str’:
> 
> src/gmpy_mpfr.c:569: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:569: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_xor’:
> 
> src/gmpy_xmpz_inplace.c:407: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:407: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:412: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:418: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:582: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2repr’:src/gmpy_xmpz_inplace.c:432: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:432: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:588: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:588: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:591: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c: In function ‘Pyxmpz_inplace_ior’:
> 
> src/gmpy_xmpz_inplace.c:448: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:448: error: syntax error before ‘tempz’
> 
> src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:453: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pygmpy_mpfr’:
> 
> src/gmpy_mpfr.c:623: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:628: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:628: error: syntax error before ‘bits’src/gmpy_xmpz_inplace.c:459: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_xmpz_inplace.c:473: error: syntax error before ‘)’ token
> 
> src/gmpy_xmpz_inplace.c:473: error: syntax error before ‘)’ token
> 
> In file included from src/gmpy2.c:2125:
> 
> src/gmpy_mpq.c: In function ‘Pympq_digits’:
> 
> src/gmpy_mpq.c:42: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_sign’:
> 
> 
> 
> src/gmpy_mpq.c:51: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:54: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:57: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:644: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: In function ‘Pympq_numer’:
> 
> src/gmpy_mpq.c:79: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:86: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:92: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_getnumer’:
> 
> src/gmpy_mpq.c:94: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:97: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:97: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: In function ‘Pympq_denom’:
> 
> src/gmpy_mpq.c:108: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:115: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:121: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_getdenom’:
> 
> src/gmpy_mpq.c:123: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:126: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: In function ‘isOne’:
> 
> src/gmpy_mpq.c:140: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:144: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:147: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:156: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:156: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c: In function ‘Pympq_qdiv’:
> 
> src/gmpy_mpq.c:186: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:193: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:193: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:220: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:228: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:232: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:239: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:239: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:282: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_neg’:
> 
> src/gmpy_mpq.c:282: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:282: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpq.c:285: error: syntax error before ‘*’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_abs’:
> 
> src/gmpy_mpq.c:287: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:290: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:682: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_getprec_attrib’:
> 
> src/gmpy_mpfr.c:684: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:690: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_getrc_attrib’:
> 
> src/gmpy_mpfr.c:692: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:698: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_getimag_attrib’:
> 
> src/gmpy_mpfr.c:700: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:710: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_getreal_attrib’:
> 
> src/gmpy_mpfr.c:712: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:718: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_nonzero’:
> 
> src/gmpy_mpfr.c:720: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:739: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_pos’:
> 
> src/gmpy_mpfr.c:741: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:743: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:749: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:756: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:758: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:758: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_get_max_precision’:
> 
> src/gmpy_mpfr.c:798: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_get_exp’:
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:814: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:815: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:818: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:823: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:824: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_set_exp’:
> 
> src/gmpy_mpfr.c:845: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:857: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:860: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_set_sign’:
> 
> src/gmpy_mpfr.c:878: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:899: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:899: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:900: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_copy_sign’:
> 
> src/gmpy_mpfr.c:915: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:928: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:928: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_div_2exp’:
> 
> src/gmpy_mpfr.c:942: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:955: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:955: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_mul_2exp’:
> 
> src/gmpy_mpfr.c:968: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:982: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c: At top level:src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpq.c:296: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c: In function ‘Pympq_pos’:src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c:298: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c: In function ‘Pympq_square’:
> 
> src/gmpy_mpq.c:305: error: ‘tempx’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c:305: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c:311: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:311: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:314: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:314: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:322: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c:322: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_set_nan’:
> 
> src/gmpy_mpfr.c:994: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_set_inf’:
> 
> src/gmpy_mpfr.c:1008: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_set_zero’:
> 
> src/gmpy_mpfr.c:1028: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_signed’:
> 
> src/gmpy_mpfr.c:1064: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_nan’:
> 
> src/gmpy_mpfr.c:1104: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_inf’:
> 
> src/gmpy_mpfr.c:1114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_number’:
> 
> src/gmpy_mpfr.c:1126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_zero’:
> 
> src/gmpy_mpfr.c:1136: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_regular’:
> 
> src/gmpy_mpfr.c:1146: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_integer’:
> 
> src/gmpy_mpfr.c:1156: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_digits’:
> 
> src/gmpy_mpfr.c:1187: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_f2q’:
> 
> src/gmpy_mpfr.c:1204: error: ‘err’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1205: error: ‘fself’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1210: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1210: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1212: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:1217: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘f2q_internal’:
> 
> src/gmpy_mpfr.c:1219: error: ‘res’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1221: error: ‘mpfr_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1221: error: syntax error before ‘f’
> 
> src/gmpy_mpfr.c:1224: error: ‘err’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1230: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1233: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1234: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1234: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1239: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1240: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1241: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1245: error: ‘minerr’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1246: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1249: error: ‘f’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1252: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1256: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1259: error: ‘al’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1261: error: ‘a’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1263: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1265: error: ‘r1’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1266: error: ‘r2’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1268: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1269: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1270: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1271: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1272: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1273: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1274: error: ‘curerr’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1275: error: ‘newerr’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1276: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1278: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1279: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1283: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1284: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1287: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1288: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1289: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1290: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1298: error: ‘mayz’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1300: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1301: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1301: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1303: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1303: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1306: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1307: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:1326: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_hash’:
> 
> src/gmpy_mpfr.c:1375: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1377: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2_pow’:
> 
> src/gmpy_mpfr.c:1387: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1387: error: ‘tempe’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1387: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1406: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1407: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1415: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1416: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1416: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_const_pi’:
> 
> src/gmpy_mpfr.c:1448: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_const_euler’:
> 
> src/gmpy_mpfr.c:1454: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_const_log2’:
> 
> src/gmpy_mpfr.c:1460: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_const_catalan’:
> 
> src/gmpy_mpfr.c:1466: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sqrt’:
> 
> src/gmpy_mpfr.c:1477: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_pow’:
> 
> src/gmpy_mpq.c:332: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:332: error: ‘tempbq’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:333: error: ‘tempez’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:335: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:335: error: ‘tempbf’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:335: error: ‘tempef’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1485: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1486: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c:414: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rec_sqrt’:
> 
> src/gmpy_mpfr.c:1498: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ tokensrc/gmpy_mpq.c:426: error: syntax error before ‘*’ token
> 
> 
> 
> src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpq.c: In function ‘Pympq_nonzero’:
> 
> src/gmpy_mpq.c:428: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1505: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1506: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1507: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1514: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1515: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_root’:
> 
> src/gmpy_mpq.c: At top level:
> 
> src/gmpy_mpfr.c:1528: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpq.c:432: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpq.c: In function ‘Pympq_hash’:src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpq.c:475: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
> 
> In file included from src/gmpy2.c:2128:
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:34: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:35: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2Pympfr’:
> 
> src/gmpy_mpfr.c:37: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1541: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:40: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1542: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:41: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:41: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:43: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:44: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_round’:
> 
> src/gmpy_mpfr.c:1554: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1554: error: syntax error before ‘prec’
> 
> src/gmpy_mpfr.c:1555: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: ‘prec’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:48: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:49: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘PyFloat2Pympfr’:
> 
> src/gmpy_mpfr.c:51: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:54: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:61: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:62: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:66: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:67: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘Pympz2Pympfr’:
> 
> src/gmpy_mpfr.c:69: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:72: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1560: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1566: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1566: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1567: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1568: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1570: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:73: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:73: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:74: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:78: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:79: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘Pyxmpz2Pympfr’:
> 
> src/gmpy_mpfr.c:81: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:84: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:85: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:85: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:86: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:90: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2Pympz’:
> 
> src/gmpy_mpfr.c:93: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:97: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:102: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:113: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2Pyxmpz’:
> 
> src/gmpy_mpfr.c:116: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:120: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:125: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:131: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:131: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:136: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2Pympq’:
> 
> src/gmpy_mpfr.c:139: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:142: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:143: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘Pympq2Pympfr’:
> 
> src/gmpy_mpfr.c:145: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:148: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_reldiff’:
> 
> src/gmpy_mpfr.c:1583: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:149: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:149: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:150: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: At top level:src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:154: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:155: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c:1586: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘PyLong2Pympfr’:
> 
> src/gmpy_mpfr.c:157: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1586: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1597: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1597: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1598: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sign’:
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1613: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1616: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:1650: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_abs’:
> 
> src/gmpy_mpfr.c:1650: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1650: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:1651: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_neg’:
> 
> src/gmpy_mpfr.c:1651: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1651: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_ceil’:
> 
> src/gmpy_mpfr.c:1673: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:158: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:162: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:168: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:169: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘PyInt2Pympfr’:
> 
> src/gmpy_mpfr.c:171: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:174: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:175: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:176: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:181: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2PyInt’:
> 
> src/gmpy_mpfr.c:184: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:184: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:194: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:195: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘PyStr2Pympfr’:
> 
> src/gmpy_mpfr.c:197: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:199: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:199: error: syntax error before ‘prec’
> 
> src/gmpy_mpfr.c:205: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:219: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:220: error: ‘prec’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:222: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:224: error: ‘MPFR_PREC_MIN’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:242: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:243: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:254: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2PyLong’:
> 
> src/gmpy_mpfr.c:257: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:257: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:267: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2PyFloat’:
> 
> src/gmpy_mpfr.c:269: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:269: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:302: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2binary’:
> 
> src/gmpy_mpfr.c:308: error: ‘mpfr_exp_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:308: error: syntax error before ‘the_exp’
> 
> src/gmpy_mpfr.c:313: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:325: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:332: error: ‘the_exp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:333: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:333: warning: assignment makes pointer from integer without a cast
> 
> src/gmpy_mpfr.c:345: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:405: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_ascii’:
> 
> src/gmpy_mpfr.c:409: error: ‘mpfr_exp_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:409: error: syntax error before ‘the_exp’
> 
> src/gmpy_mpfr.c:413: error: ‘base’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:417: error: ‘digits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:423: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:443: error: ‘the_exp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:443: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:443: warning: assignment makes pointer from integer without a cast
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:463: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:464: error: syntax error before ‘mpfr_prec_t’
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_From_Real’:
> 
> src/gmpy_mpfr.c:466: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:467: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:469: error: ‘obj’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:469: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:469: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:469: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:472: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:472: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:473: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:483: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:484: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:484: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:485: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:486: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_convert_arg’:
> 
> src/gmpy_mpfr.c:545: error: ‘newob’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:563: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2str’:
> 
> src/gmpy_mpfr.c:569: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:569: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:582: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2repr’:
> 
> src/gmpy_mpfr.c:588: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:588: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pygmpy_mpfr’:
> 
> src/gmpy_mpfr.c:623: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:628: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:628: error: syntax error before ‘bits’
> 
> src/gmpy_mpfr.c:644: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:682: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_getprec_attrib’:
> 
> src/gmpy_mpfr.c:684: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:690: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_getrc_attrib’:
> 
> src/gmpy_mpfr.c:692: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:698: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_getimag_attrib’:
> 
> src/gmpy_mpfr.c:700: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:710: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_getreal_attrib’:
> 
> src/gmpy_mpfr.c:712: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:718: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_nonzero’:
> 
> src/gmpy_mpfr.c:720: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:739: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_pos’:
> 
> src/gmpy_mpfr.c:741: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:743: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:749: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:756: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:758: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:758: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:759: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:760: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_get_max_precision’:
> 
> src/gmpy_mpfr.c:798: error: ‘MPFR_PREC_MAX’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_get_exp’:
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:812: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:812: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:814: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:815: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:818: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:823: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:824: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_set_exp’:
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_floor’:
> 
> src/gmpy_mpfr.c:1683: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_trunc’:
> 
> src/gmpy_mpfr.c:1695: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_round2’:
> 
> src/gmpy_mpfr.c:1704: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1710: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1710: error: called object ‘mpfr_round’ is not a function
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rint’:
> 
> src/gmpy_mpfr.c:1731: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rint_ceil’:
> 
> src/gmpy_mpfr.c:1739: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rint_floor’:
> 
> src/gmpy_mpfr.c:1747: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rint_round’:
> 
> src/gmpy_mpfr.c:1755: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rint_trunc’:
> 
> src/gmpy_mpfr.c:1762: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_frac’:
> 
> src/gmpy_mpfr.c:1768: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:845: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:857: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:860: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_set_sign’:
> 
> src/gmpy_mpfr.c:878: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:899: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:899: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:900: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_copy_sign’:
> 
> src/gmpy_mpfr.c:915: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:928: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:928: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_div_2exp’:
> 
> src/gmpy_mpfr.c:942: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:955: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:955: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:958: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_mul_2exp’:
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_modf’:
> 
> src/gmpy_mpfr.c:1778: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1778: error: ‘c’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1791: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1792: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1797: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1797: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1798: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1798: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sqr’:
> 
> src/gmpy_mpfr.c:1819: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:968: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_cbrt’:
> 
> src/gmpy_mpfr.c:981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:982: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_log’:
> 
> src/gmpy_mpfr.c:1831: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:984: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_set_nan’:
> 
> src/gmpy_mpfr.c:994: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_set_inf’:
> 
> src/gmpy_mpfr.c:1008: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_set_zero’:
> 
> src/gmpy_mpfr.c:1028: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_signed’:
> 
> src/gmpy_mpfr.c:1064: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_nan’:
> 
> src/gmpy_mpfr.c:1104: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_inf’:
> 
> src/gmpy_mpfr.c:1114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_number’:
> 
> src/gmpy_mpfr.c:1126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_zero’:
> 
> src/gmpy_mpfr.c:1136: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_regular’:
> 
> src/gmpy_mpfr.c:1146: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_integer’:
> 
> src/gmpy_mpfr.c:1156: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_digits’:
> 
> src/gmpy_mpfr.c:1187: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_f2q’:
> 
> src/gmpy_mpfr.c:1204: error: ‘err’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1205: error: ‘fself’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1210: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1210: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1210: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1212: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:1217: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘f2q_internal’:
> 
> src/gmpy_mpfr.c:1219: error: ‘res’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1221: error: ‘mpfr_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1221: error: syntax error before ‘f’
> 
> src/gmpy_mpfr.c:1224: error: ‘err’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1230: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1233: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1234: error: ‘bits’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1234: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1239: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1240: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1241: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1245: error: ‘minerr’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1246: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1249: error: ‘f’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1252: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1256: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1259: error: ‘al’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1261: error: ‘a’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1263: error: ‘temp’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1265: error: ‘r1’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1266: error: ‘r2’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1268: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1269: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1270: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1271: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1272: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1273: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1274: error: ‘curerr’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1275: error: ‘newerr’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1276: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1278: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1279: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1283: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1284: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1287: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1288: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1289: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1290: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1298: error: ‘mayz’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1300: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1301: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1301: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1303: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1303: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1306: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1307: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:1326: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_hash’:
> 
> src/gmpy_mpfr.c:1375: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1377: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr2_pow’:
> 
> src/gmpy_mpfr.c:1387: error: ‘tempb’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1387: error: ‘tempe’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1387: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1406: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1407: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1415: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1416: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1416: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1418: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_const_pi’:
> 
> src/gmpy_mpfr.c:1448: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1448: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_const_euler’:
> 
> src/gmpy_mpfr.c:1454: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1454: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_const_log2’:
> 
> src/gmpy_mpfr.c:1460: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1460: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_const_catalan’:
> 
> src/gmpy_mpfr.c:1466: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sqrt’:
> 
> src/gmpy_mpfr.c:1477: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1479: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1479: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1485: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1486: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1488: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rec_sqrt’:
> 
> src/gmpy_mpfr.c:1498: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1500: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1500: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1505: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1506: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1507: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1514: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1515: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1517: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_root’:
> 
> src/gmpy_mpfr.c:1528: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1530: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1530: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1541: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1542: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1544: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_round’:
> 
> src/gmpy_mpfr.c:1554: error: ‘mpfr_prec_t’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1554: error: syntax error before ‘prec’
> 
> src/gmpy_mpfr.c:1555: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: ‘prec’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1557: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1557: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1560: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1566: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1566: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1567: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1568: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1570: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1572: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_reldiff’:
> 
> src/gmpy_mpfr.c:1583: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_log2’:
> 
> src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1837: error: ‘result’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_mpfr.c:1586: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1586: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1586: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1597: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1597: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:1598: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sign’:
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1610: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_log10’:
> 
> src/gmpy_mpfr.c:1610: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1613: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1616: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: At top level:
> 
> src/gmpy_mpfr.c:1650: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_abs’:
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1650: error: ‘r’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_mpfr.c:1650: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1650: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_exp’:
> 
> src/gmpy_mpfr.c:1849: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: At top level:src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: syntax error before ‘*’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_exp2’:src/gmpy_mpfr.c: In function ‘Pympfr_neg’:
> 
> 
> 
> src/gmpy_mpfr.c:1855: error: ‘result’ undeclared (first use in this function)src/gmpy_mpfr.c:1651: error: ‘r’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1651: error: ‘x’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_exp10’:
> 
> src/gmpy_mpfr.c:1861: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sin’:
> 
> src/gmpy_mpfr.c:1867: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_cos’:
> 
> src/gmpy_mpfr.c:1873: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_tan’:
> 
> src/gmpy_mpfr.c:1879: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_ceil’:
> 
> src/gmpy_mpfr.c:1673: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sec’:
> 
> src/gmpy_mpfr.c:1885: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1673: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_floor’:
> 
> src/gmpy_mpfr.c:1683: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_csc’:
> 
> src/gmpy_mpfr.c:1891: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1683: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1683: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_trunc’:
> 
> src/gmpy_mpfr.c:1695: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_cot’:
> 
> src/gmpy_mpfr.c:1897: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_acos’:
> 
> src/gmpy_mpfr.c:1903: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_asin’:
> 
> src/gmpy_mpfr.c:1909: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_atan’:
> 
> src/gmpy_mpfr.c:1915: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_cosh’:
> 
> src/gmpy_mpfr.c:1921: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sinh’:
> 
> src/gmpy_mpfr.c:1927: error: ‘result’ undeclared (first use in this function)src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1695: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_round2’:
> 
> src/gmpy_mpfr.c:1704: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1706: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1706: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1710: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1710: error: called object ‘mpfr_round’ is not a function
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1711: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rint’:
> 
> src/gmpy_mpfr.c:1731: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rint_ceil’:
> 
> src/gmpy_mpfr.c:1739: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1739: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rint_floor’:
> 
> src/gmpy_mpfr.c:1747: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1747: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rint_round’:
> 
> src/gmpy_mpfr.c:1755: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1755: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_rint_trunc’:
> 
> src/gmpy_mpfr.c:1762: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1762: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_frac’:
> 
> src/gmpy_mpfr.c:1768: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1768: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_modf’:
> 
> src/gmpy_mpfr.c:1778: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1778: error: ‘c’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1782: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1782: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1791: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1792: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1797: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1797: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1798: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1798: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_tanh’:src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1933: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1799: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1800: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sqr’:
> 
> src/gmpy_mpfr.c:1819: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sech’:
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1819: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_cbrt’:
> 
> src/gmpy_mpfr.c:1825: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_csch’:
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_coth’:
> 
> src/gmpy_mpfr.c:1951: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_acosh’:src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1957: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1825: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_asinh’:
> 
> src/gmpy_mpfr.c:1963: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_atanh’:
> 
> src/gmpy_mpfr.c:1969: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_log1p’:
> 
> src/gmpy_mpfr.c:1975: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_expm1’:
> 
> src/gmpy_mpfr.c:1981: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_eint’:
> 
> src/gmpy_mpfr.c:1987: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_li2’:
> 
> src/gmpy_mpfr.c:1993: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_log’:
> 
> src/gmpy_mpfr.c:1831: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1831: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_log2’:
> 
> src/gmpy_mpfr.c:1837: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1837: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_log10’:
> 
> src/gmpy_mpfr.c:1843: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1843: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_exp’:
> 
> src/gmpy_mpfr.c:1849: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1849: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_exp2’:
> 
> src/gmpy_mpfr.c:1855: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1855: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_exp10’:
> 
> src/gmpy_mpfr.c:1861: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1861: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sin’:
> 
> src/gmpy_mpfr.c:1867: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_gamma’:
> 
> src/gmpy_mpfr.c:1999: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1867: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_cos’:
> 
> src/gmpy_mpfr.c:1873: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1873: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_tan’:
> 
> src/gmpy_mpfr.c:1879: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1879: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sec’:
> 
> src/gmpy_mpfr.c:1885: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1885: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_csc’:
> 
> src/gmpy_mpfr.c:1891: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1891: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_cot’:
> 
> src/gmpy_mpfr.c:1897: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_lngamma’:
> 
> src/gmpy_mpfr.c:2005: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1897: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_acos’:
> 
> src/gmpy_mpfr.c:1903: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_lgamma’:
> 
> src/gmpy_mpfr.c:2016: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1903: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_asin’:src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1909: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2027: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2028: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2029: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2029: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1909: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_atan’:
> 
> src/gmpy_mpfr.c:1915: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1915: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_cosh’:
> 
> src/gmpy_mpfr.c:1921: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1921: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sinh’:
> 
> src/gmpy_mpfr.c:1927: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1927: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_tanh’:
> 
> src/gmpy_mpfr.c:1933: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1933: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sech’:
> 
> src/gmpy_mpfr.c:1939: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_digamma’:
> 
> src/gmpy_mpfr.c:2051: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_zeta’:
> 
> src/gmpy_mpfr.c:2057: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_erf’:
> 
> src/gmpy_mpfr.c:2063: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_erfc’:
> 
> src/gmpy_mpfr.c:2069: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_j0’:
> 
> src/gmpy_mpfr.c:2075: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_j1’:
> 
> src/gmpy_mpfr.c:2081: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_jn’:
> 
> src/gmpy_mpfr.c:2090: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2099: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2100: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_y0’:
> 
> src/gmpy_mpfr.c:2108: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_y1’:
> 
> src/gmpy_mpfr.c:2114: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_yn’:
> 
> src/gmpy_mpfr.c:2123: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1939: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_csch’:
> 
> src/gmpy_mpfr.c:1945: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_coth’:
> 
> src/gmpy_mpfr.c:1951: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2132: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2133: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1951: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_ai’:
> 
> src/gmpy_mpfr.c:2141: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_acosh’:
> 
> src/gmpy_mpfr.c:1957: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1957: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_add’:
> 
> src/gmpy_mpfr.c:2150: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_asinh’:
> 
> src/gmpy_mpfr.c:1963: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2159: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2160: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2160: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1963: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1963: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_atanh’:
> 
> src/gmpy_mpfr.c:1969: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sub’:
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2171: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2174: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2174: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2180: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2181: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2181: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1969: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_log1p’:
> 
> src/gmpy_mpfr.c:1975: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_mul’:
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2192: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2195: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2195: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2201: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1975: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_expm1’:
> 
> src/gmpy_mpfr.c:1981: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2202: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2202: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1981: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_div’:
> 
> src/gmpy_mpfr.c:2213: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_eint’:
> 
> src/gmpy_mpfr.c:1987: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2216: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:2216: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2221: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2222: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2223: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2230: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2231: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2231: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1987: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_fmod’:
> 
> src/gmpy_mpfr.c:2242: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2245: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2245: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2250: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2251: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2252: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2259: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2260: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_li2’:
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1993: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_gamma’:
> 
> src/gmpy_mpfr.c:1999: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:1999: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_lngamma’:
> 
> src/gmpy_mpfr.c:2005: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2005: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_lgamma’:
> 
> src/gmpy_mpfr.c:2016: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2019: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2019: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2027: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2028: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2029: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2029: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2030: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2031: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_digamma’:
> 
> src/gmpy_mpfr.c:2051: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_remainder’:
> 
> src/gmpy_mpfr.c:2272: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2275: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2275: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2051: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2280: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2281: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2282: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2289: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2290: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_zeta’:
> 
> src/gmpy_mpfr.c:2290: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2057: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_erf’:
> 
> src/gmpy_mpfr.c:2063: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2063: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_erfc’:
> 
> src/gmpy_mpfr.c:2069: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2069: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_j0’:
> 
> src/gmpy_mpfr.c:2075: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2075: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_j1’:
> 
> src/gmpy_mpfr.c:2081: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2081: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_jn’:
> 
> src/gmpy_mpfr.c:2090: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_remquo’:
> 
> src/gmpy_mpfr.c:2303: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2306: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2306: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2093: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2093: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2099: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2100: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2314: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2315: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2315: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2316: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2316: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2101: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_y0’:
> 
> src/gmpy_mpfr.c:2108: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2108: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_y1’:
> 
> src/gmpy_mpfr.c:2114: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_yn’:
> 
> src/gmpy_mpfr.c:2123: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2126: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2126: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2132: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2133: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2134: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_pow’:
> 
> src/gmpy_mpfr.c:2342: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_ai’:
> 
> src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2141: error: ‘result’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_mpfr.c:2345: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2345: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2350: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2351: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2352: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2353: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2360: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2361: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2361: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2141: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_add’:
> 
> src/gmpy_mpfr.c:2150: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2153: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_atan2’:
> 
> src/gmpy_mpfr.c:2372: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2159: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2160: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2375: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2160: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2375: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2161: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2381: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2382: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2382: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sub’:
> 
> src/gmpy_mpfr.c:2171: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2174: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2174: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2174: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_agm’:
> 
> src/gmpy_mpfr.c:2393: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2396: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2396: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2402: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2403: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2403: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_hypot’:
> 
> src/gmpy_mpfr.c:2414: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2423: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2424: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_max’:
> 
> src/gmpy_mpfr.c:2435: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2438: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2438: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2444: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2445: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2445: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_min’:
> 
> src/gmpy_mpfr.c:2456: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2459: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2459: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2465: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2466: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_nexttoward’:
> 
> src/gmpy_mpfr.c:2477: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2480: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2180: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2480: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2181: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2181: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2482: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2486: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2182: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2486: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2487: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_mul’:
> 
> src/gmpy_mpfr.c:2192: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2195: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2195: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2195: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_nextabove’:
> 
> src/gmpy_mpfr.c:2499: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2201: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2202: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2202: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2503: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2507: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2507: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2203: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_div’:
> 
> src/gmpy_mpfr.c:2213: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2216: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2216: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2221: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2222: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2223: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2230: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2231: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2231: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2232: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_fmod’:
> 
> src/gmpy_mpfr.c:2242: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2245: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2245: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2245: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2250: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2251: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2252: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2259: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2260: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2261: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_remainder’:
> 
> src/gmpy_mpfr.c:2272: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2275: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2275: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2275: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2280: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2281: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2282: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2289: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2290: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2290: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2291: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_remquo’:
> 
> src/gmpy_mpfr.c:2303: error: ‘value’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2306: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2306: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2306: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2314: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2315: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2315: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2316: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2316: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2317: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2318: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_pow’:
> 
> src/gmpy_mpfr.c:2342: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2345: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2345: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2345: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2350: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2351: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2352: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2353: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2360: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2361: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2361: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2362: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_atan2’:
> 
> src/gmpy_mpfr.c:2372: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2375: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2375: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2375: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2381: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2382: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2382: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_agm’:
> 
> src/gmpy_mpfr.c:2393: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2396: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2396: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2396: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2402: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2403: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2403: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2404: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_hypot’:
> 
> src/gmpy_mpfr.c:2414: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2417: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2417: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2423: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2424: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_nextbelow’:
> 
> src/gmpy_mpfr.c:2520: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2425: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_max’:
> 
> src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2435: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2438: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2438: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2524: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2438: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2528: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2528: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2444: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2445: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2445: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2446: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sin_cos’:
> 
> src/gmpy_mpfr.c:2541: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2541: error: ‘c’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2554: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2555: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2560: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2560: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2561: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2561: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sinh_cosh’:
> 
> src/gmpy_mpfr.c:2587: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2587: error: ‘c’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2600: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2601: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2606: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2606: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2607: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2607: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_fma’:
> 
> src/gmpy_mpfr.c:2633: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2633: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2633: error: ‘y’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2633: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2652: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2652: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_fms’:
> 
> src/gmpy_mpfr.c:2674: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2674: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2674: error: ‘y’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2674: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2692: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2693: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2693: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_min’:
> 
> src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2456: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2459: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2459: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2459: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2465: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2466: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2466: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_factorial’:
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2716: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2734: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2467: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_nexttoward’:
> 
> src/gmpy_mpfr.c:2477: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2480: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2480: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2480: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2482: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2486: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2486: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2487: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_lessgreater’:
> 
> src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2758: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2758: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2760: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2760: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2489: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_unordered’:
> 
> src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2783: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2783: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2785: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2785: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_check_range’:
> 
> src/gmpy_mpfr.c:2802: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2805: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2806: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2806: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2807: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2808: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_nextabove’:
> 
> src/gmpy_mpfr.c:2815: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2499: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2816: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2816: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2817: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2818: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2501: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2501: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2503: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2507: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2507: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_format’:
> 
> src/gmpy_mpfr.c:2979: error: syntax error before ‘)’ token
> 
> In file included from src/gmpy2.c:2135:
> 
> src/gmpy_basic.c: In function ‘Pympany_add’:
> 
> src/gmpy_basic.c:48: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:48: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:49: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:49: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:49: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:50: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:50: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:50: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:52: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:52: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:52: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:66: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:68: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:72: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:75: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:81: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:81: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:96: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:100: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:103: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:111: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:111: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2510: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:111: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:111: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:111: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:111: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:117: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:117: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:118: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_nextbelow’:
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2520: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2522: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2522: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:129: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2524: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:130: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2528: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2528: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2531: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:142: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:143: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sin_cos’:
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2541: error: ‘s’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_mpfr.c:2541: error: ‘c’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2545: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2545: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:150: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:151: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2554: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2555: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2560: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2560: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:158: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:158: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:158: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:158: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:158: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:158: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:169: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:170: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:182: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:183: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:190: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:191: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:257: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_sub’:
> 
> src/gmpy_basic.c:287: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:287: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:288: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:288: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:288: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:289: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:289: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:289: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:291: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:291: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:291: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:305: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:307: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:311: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:314: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:320: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:320: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:335: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:339: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:342: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:351: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:351: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:351: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:351: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:351: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:351: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:354: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2561: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:354: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:357: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2561: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:357: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:358: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2562: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2563: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:369: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:370: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_sinh_cosh’:
> 
> src/gmpy_mpfr.c:2587: error: ‘s’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2587: error: ‘c’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:382: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2591: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2600: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2601: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2606: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2606: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2607: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2607: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:390: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:391: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2608: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:397: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:397: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:397: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:397: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:397: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:397: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:408: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:408: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:409: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:421: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:421: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:422: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:429: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:429: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:430: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:496: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_mul’:
> 
> src/gmpy_basic.c:526: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:526: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:527: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:527: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:527: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:528: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:528: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:528: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:530: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:530: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:530: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:544: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:546: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:550: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:556: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:556: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:571: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:575: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:583: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:583: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2609: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_basic.c:583: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:583: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:583: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:583: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:586: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:586: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:586: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:586: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:586: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:586: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:589: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:589: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:590: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:601: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:602: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:614: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:615: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:622: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:623: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_fma’:
> 
> src/gmpy_mpfr.c:2633: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2633: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2633: error: ‘y’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2633: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2651: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2652: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:629: error: syntax error before ‘)’ tokensrc/gmpy_mpfr.c:2652: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:629: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:629: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:629: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:629: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2653: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:629: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:640: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:641: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2654: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_fms’:
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2674: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2674: error: ‘x’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2674: error: ‘y’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2674: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:653: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:654: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2692: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2693: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2693: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2694: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2695: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_factorial’:
> 
> src/gmpy_mpfr.c:2716: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:661: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2734: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:662: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2736: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2737: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_lessgreater’:
> 
> src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2758: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2758: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2758: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2760: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2760: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_is_unordered’:
> 
> src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2783: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2783: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2783: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2785: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2785: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_check_range’:
> 
> src/gmpy_mpfr.c:2802: error: ‘result’ undeclared (first use in this function)
> 
> src/gmpy_mpfr.c:2805: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2806: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2806: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2807: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2808: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2815: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2816: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2816: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2817: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2818: error: syntax error before ‘)’ token
> 
> src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2827: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c:2828: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpfr.c: In function ‘Pympfr_format’:
> 
> src/gmpy_mpfr.c:2979: error: syntax error before ‘)’ token
> 
> In file included from src/gmpy2.c:2135:
> 
> src/gmpy_basic.c: In function ‘Pympany_add’:
> 
> src/gmpy_basic.c:48: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:48: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:49: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:49: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:49: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:50: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:50: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:50: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:52: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:52: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:52: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:66: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:68: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:72: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:75: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:81: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:81: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:96: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:100: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:103: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:111: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:111: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:111: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:111: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:111: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:111: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:114: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:114: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:117: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:117: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:118: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:728: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_floordiv’:
> 
> src/gmpy_basic.c:758: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:758: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:759: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:759: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:759: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:760: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:760: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:760: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:762: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:762: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:762: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:774: error: ‘tempz’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_basic.c:119: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:776: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:129: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:130: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:132: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:785: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:788: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:142: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:143: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:795: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:800: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:800: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:807: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:145: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:817: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:150: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:151: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:153: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:158: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:158: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:158: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:158: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:158: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:158: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:169: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:170: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:172: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:182: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:183: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:894: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_basic.c:895: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:185: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:190: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:191: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:192: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:257: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:260: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:909: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_sub’:
> 
> src/gmpy_basic.c:287: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:287: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:288: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:288: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:288: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:289: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:289: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:289: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:291: error: ‘rf’ undeclared (first use in this function)src/gmpy_basic.c: In function ‘Pympany_truediv’:
> 
> 
> 
> src/gmpy_basic.c:932: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:291: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:291: error: ‘pbf’ undeclared (first use in this function)src/gmpy_basic.c:932: error: ‘pbz’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_basic.c:933: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:933: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:933: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:935: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:935: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:935: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:939: error: ‘mpq_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:939: error: syntax error before ‘tempq’
> 
> src/gmpy_basic.c:305: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:307: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:311: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:314: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:320: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:320: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:335: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:339: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:342: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:351: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:351: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:351: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:351: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:351: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:351: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:354: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_basic.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:354: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:354: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:944: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:354: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:357: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:357: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:358: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:954: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:954: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:955: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:359: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:369: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:370: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:372: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:983: error: ‘tempq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:382: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:383: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:989: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:385: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:390: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:391: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1042: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1043: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:392: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:397: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:397: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:397: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:397: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:397: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_basic.c:1056: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_div2’:
> 
> src/gmpy_basic.c:1091: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1091: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:1092: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1092: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1092: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1093: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1093: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1093: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1095: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1095: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1095: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1109: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1111: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1120: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1123: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1130: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1135: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1135: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1209: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1210: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1223: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_rem’:
> 
> src/gmpy_basic.c:1246: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1246: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:1247: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1248: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1248: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1248: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1250: error: ‘qf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1250: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1250: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1250: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1262: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1264: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1268: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1276: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1282: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1287: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1287: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1294: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1303: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1357: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1358: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1374: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1375: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1388: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1389: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1401: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1405: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1407: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1408: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_divmod’:
> 
> src/gmpy_basic.c:1433: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1433: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:1434: error: ‘qz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1434: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1434: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1434: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1435: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1435: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1435: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1437: error: ‘qf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1437: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1437: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1437: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1453: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1455: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1459: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1469: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:397: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1478: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:408: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:1485: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_basic.c:1485: error: syntax error before ‘)’ tokensrc/gmpy_basic.c:408: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_basic.c:409: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1496: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:411: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1510: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:421: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:421: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:422: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1602: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1603: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1620: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:424: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:429: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:429: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:430: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:431: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1621: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:496: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1636: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1637: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:499: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1652: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1657: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1662: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1664: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1665: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1669: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1669: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1670: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1670: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1672: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1679: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_mul’:
> 
> src/gmpy_basic.c:526: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:526: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:1686: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:527: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:527: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:527: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:528: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:528: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:528: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:530: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:530: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:530: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:544: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:546: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:550: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:556: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:556: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:571: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:575: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:583: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:583: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:583: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:583: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:583: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:583: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:586: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:586: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:586: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:586: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:586: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:586: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:589: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:589: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:590: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:591: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c: In function ‘mpany_richcompare’:
> 
> src/gmpy2.c:2159: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy2.c:2159: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:601: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:602: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2175: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2177: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2181: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2187: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2187: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2191: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2191: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:604: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2196: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2196: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2198: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2199: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:614: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:615: error: request for member ‘now’ in something not a structure or unionsrc/gmpy2.c:2208: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2208: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2225: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2225: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2237: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2238: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2257: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2257: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2258: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2259: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2268: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2268: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or unionIn file included from src/gmpy2.c:2282:
> 
> src/gmpy_mpany.c: In function ‘Pympany_binary’:
> 
> 
> 
> src/gmpy_mpany.c:172: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:617: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:622: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:623: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpany.c: In function ‘Pympany_printf’:
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or unionsrc/gmpy_mpany.c:251: error: syntax error before ‘)’ token
> 
> src/gmpy_mpany.c:253: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_mpany.c:261: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:624: error: request for member ‘now’ in something not a structure or union
> 
> In file included from src/gmpy2.c:2286:
> 
> src/gmpy_mpmath.c: At top level:
> 
> src/gmpy_mpmath.c:29: error: syntax error before ‘PympzObject’src/gmpy_basic.c:629: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:629: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:629: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:629: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:629: error: syntax error before ‘)’ token
> 
> 
> 
> src/gmpy_basic.c:629: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpmath.c: In function ‘mpmath_build_mpf’:
> 
> src/gmpy_mpmath.c:33: error: ‘man’ undeclared (first use in this function)src/gmpy_basic.c:640: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:641: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:643: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpmath.c:37: error: ‘sign’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:653: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:654: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpmath.c:43: error: ‘bc’ undeclared (first use in this function)src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpmath.c:52: warning: the address of ‘exp’, will always evaluate as ‘true’
> 
> 
> 
> src/gmpy_mpmath.c:52: warning: pointer type mismatch in conditional expression
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpmath.c: At top level:
> 
> src/gmpy_mpmath.c:57: error: syntax error before ‘*’ token
> 
> src/gmpy_mpmath.c:58: error: syntax error before ‘z’
> 
> src/gmpy_basic.c:661: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:662: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:663: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:728: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:731: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_floordiv’:
> 
> src/gmpy_basic.c:758: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:758: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:759: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:759: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:759: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:760: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:760: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:760: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:762: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:762: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:762: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:774: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:776: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:785: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:788: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:795: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:800: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:800: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:807: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:817: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:894: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:895: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:909: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpmath.c: In function ‘Pympz_FROM_MPZ’:
> 
> src/gmpy_mpmath.c:60: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:913: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpmath.c:62: error: syntax error before ‘)’ token
> 
> src/gmpy_mpmath.c:62: error: syntax error before ‘)’ token
> 
> src/gmpy_mpmath.c:64: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c: In function ‘Pympz_mpmath_normalize’:
> 
> src/gmpy_basic.c: In function ‘Pympany_truediv’:
> 
> src/gmpy_basic.c:932: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:932: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:933: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:933: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:933: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:935: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:935: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:935: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:939: error: ‘mpq_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:939: error: syntax error before ‘tempq’
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:942: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:942: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:943: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:944: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:945: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:954: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:954: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:955: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:956: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpmath.c:76: error: ‘man’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:77: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:77: error: syntax error before ‘upper’
> 
> src/gmpy_mpmath.c:84: error: syntax error before ‘)’ token
> 
> src/gmpy_mpmath.c:116: error: ‘upper’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:117: error: ‘lower’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:983: error: ‘tempq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:989: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:997: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpmath.c: In function ‘Pympz_mpmath_create’:
> 
> src/gmpy_mpmath.c:218: error: ‘man’ undeclared (first use in this function)src/gmpy_basic.c:1042: error: request for member ‘now’ in something not a structure or union
> 
> 
> 
> src/gmpy_mpmath.c:218: error: ‘upper’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1043: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_mpmath.c:218: error: ‘lower’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1056: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1059: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_div2’:
> 
> src/gmpy_basic.c:1091: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1091: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:1092: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1092: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1092: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1093: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1093: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1093: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1095: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1095: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1095: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1109: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1111: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1120: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1123: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1130: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1135: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1135: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1209: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1210: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1223: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1226: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c: In function ‘Pympany_rem’:
> 
> src/gmpy_basic.c:1246: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1246: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:1247: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1248: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1248: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1248: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1250: error: ‘qf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1250: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1250: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1250: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1262: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1264: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1268: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1276: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1282: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1287: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1287: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1294: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1303: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1357: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1358: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1374: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1375: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1388: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1389: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c: In function ‘gmpy_allocate’:
> 
> src/gmpy2.c:3122: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘gmpy_reallocate’:
> 
> src/gmpy_basic.c:1401: error: request for member ‘now’ in something not a structure or unionsrc/gmpy2.c:3150: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> 
> 
> src/gmpy_basic.c:1405: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1407: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1408: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c: In function ‘gmpy_free’:
> 
> src/gmpy2.c:3189: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1413: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c: In function ‘initgmpy2’:
> 
> src/gmpy2.c:3325: error: ‘MPFR_RNDN’ undeclared (first use in this function)
> 
> src/gmpy2.c:3326: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
> 
> src/gmpy2.c:3327: error: ‘MPFR_RNDU’ undeclared (first use in this function)
> 
> src/gmpy2.c:3328: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy2.c:3329: error: ‘MPFR_RNDA’ undeclared (first use in this function)
> 
> src/gmpy_basic.c: In function ‘Pympany_divmod’:
> 
> src/gmpy_basic.c:1433: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1433: error: syntax error before ‘tempz’
> 
> src/gmpy_basic.c:1434: error: ‘qz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1434: error: ‘rz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1434: error: ‘paz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1434: error: ‘pbz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1435: error: ‘rq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1435: error: ‘paq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1435: error: ‘pbq’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1437: error: ‘qf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1437: error: ‘rf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1437: error: ‘paf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1437: error: ‘pbf’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1453: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1455: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1459: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1469: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1478: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1485: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1485: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1496: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1510: error: syntax error before ‘)’ token
> 
> src/gmpy_basic.c:1602: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1603: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1620: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1621: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1636: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1637: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1652: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1656: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1657: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1662: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy_basic.c:1664: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1665: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1669: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1669: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1670: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1670: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1671: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1672: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1679: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy_basic.c:1686: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c: In function ‘mpany_richcompare’:
> 
> src/gmpy2.c:2159: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy2.c:2159: error: syntax error before ‘tempz’
> 
> src/gmpy2.c:2175: error: ‘tempz’ undeclared (first use in this function)
> 
> src/gmpy2.c:2177: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2181: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2187: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2187: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2191: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2191: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2196: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2196: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2198: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2199: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2208: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2208: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2216: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2225: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2225: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2237: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2238: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2257: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2257: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2258: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2259: error: request for member ‘now’ in something not a structure or union
> 
> src/gmpy2.c:2268: error: syntax error before ‘)’ token
> 
> src/gmpy2.c:2268: error: syntax error before ‘)’ token
> 
> In file included from src/gmpy2.c:2282:
> 
> src/gmpy_mpany.c: In function ‘Pympany_binary’:
> 
> src/gmpy_mpany.c:172: error: syntax error before ‘)’ token
> 
> src/gmpy_mpany.c: In function ‘Pympany_printf’:
> 
> src/gmpy_mpany.c:251: error: syntax error before ‘)’ token
> 
> src/gmpy_mpany.c:253: error: syntax error before ‘)’ token
> 
> src/gmpy_mpany.c:261: error: syntax error before ‘)’ token
> 
> In file included from src/gmpy2.c:2286:
> 
> src/gmpy_mpmath.c: At top level:
> 
> src/gmpy_mpmath.c:29: error: syntax error before ‘PympzObject’
> 
> src/gmpy_mpmath.c: In function ‘mpmath_build_mpf’:
> 
> src/gmpy_mpmath.c:33: error: ‘man’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:37: error: ‘sign’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:43: error: ‘bc’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:52: warning: the address of ‘exp’, will always evaluate as ‘true’
> 
> src/gmpy_mpmath.c:52: warning: pointer type mismatch in conditional expression
> 
> src/gmpy_mpmath.c: At top level:
> 
> src/gmpy_mpmath.c:57: error: syntax error before ‘*’ token
> 
> src/gmpy_mpmath.c:58: error: syntax error before ‘z’
> 
> src/gmpy_mpmath.c: In function ‘Pympz_FROM_MPZ’:
> 
> src/gmpy_mpmath.c:60: error: ‘self’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:62: error: syntax error before ‘)’ token
> 
> src/gmpy_mpmath.c:62: error: syntax error before ‘)’ token
> 
> src/gmpy_mpmath.c:64: error: ‘z’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c: In function ‘Pympz_mpmath_normalize’:
> 
> src/gmpy_mpmath.c:76: error: ‘man’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:77: error: ‘mpz_t’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:77: error: syntax error before ‘upper’
> 
> src/gmpy_mpmath.c:84: error: syntax error before ‘)’ token
> 
> src/gmpy_mpmath.c:116: error: ‘upper’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:117: error: ‘lower’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c: In function ‘Pympz_mpmath_create’:
> 
> src/gmpy_mpmath.c:218: error: ‘man’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:218: error: ‘upper’ undeclared (first use in this function)
> 
> src/gmpy_mpmath.c:218: error: ‘lower’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘gmpy_allocate’:
> 
> src/gmpy2.c:3122: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘gmpy_reallocate’:
> 
> src/gmpy2.c:3150: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘gmpy_free’:
> 
> src/gmpy2.c:3189: error: ‘GMP_NUMB_BITS’ undeclared (first use in this function)
> 
> src/gmpy2.c: In function ‘initgmpy2’:
> 
> src/gmpy2.c:3325: error: ‘MPFR_RNDN’ undeclared (first use in this function)
> 
> src/gmpy2.c:3326: error: ‘MPFR_RNDZ’ undeclared (first use in this function)
> 
> src/gmpy2.c:3327: error: ‘MPFR_RNDU’ undeclared (first use in this function)
> 
> src/gmpy2.c:3328: error: ‘MPFR_RNDD’ undeclared (first use in this function)
> 
> src/gmpy2.c:3329: error: ‘MPFR_RNDA’ undeclared (first use in this function)
> 
> lipo: can't figure out the architecture type of: /var/folders/sl/slhfAhHiEuagNerNl-FwZE+++TI/-Tmp-//ccncCGQo.out
> 
> error: command 'gcc-4.0' failed with exit status 1
> 
> ----------------------------------------
> Command /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py27-gmpy/bin/python -c "import setuptools;__file__='/Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py27-gmpy/build/gmpy/setup.py';execfile(__file__)" install --single-version-externally-managed --record /var/folders/sl/slhfAhHiEuagNerNl-FwZE+++TI/-Tmp-/pip-tC3EBv-record/install-record.txt --install-headers /Users/aaronmeurer/Documents/python/sympy/sympy/.tox/py27-gmpy/bin/../include/site/python2.7 failed with error code 1
> Storing complete log in /Users/aaronmeurer/.pip/pip.log
> 
> [TOX] ERROR: could not install deps [gmpy]
> ________________________________ [tox summary] _________________________________
> [TOX] ERROR: py25-gmpy: could not install deps [gmpy]
> [TOX] ERROR: py27-gmpy: could not install deps [gmpy]





More information about the testing-in-python mailing list