~ubuntu-branches/ubuntu/trusty/mingw-w64/trusty

« back to all changes in this revision

Viewing changes to mingw-w64-crt/math/powi.c

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2011-11-21 23:05:31 UTC
  • mfrom: (4.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20111121230531-gu3mq69sqvlea5i1
Tags: 2.0.1-1
* New upstream release (notably adding GDI+ support).
* Drop imagehlp-fix.patch, included upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
double __powi (double x,int nn)
14
14
{
15
 
        int n, e, sign, asign, lx;
 
15
        unsigned int n;
 
16
        int e, sign, asign, lx;
16
17
        double w, y, s;
17
18
 
18
19
        /* See pow.c for these tests.  */