view test/sqrts.d @ 279:a137ed004205 trunk

[svn r300] Removed some win32 stuff that was causing problems on mingw32.
author lindquist
date Fri, 20 Jun 2008 22:25:07 +0200
parents 25fa34e899e9
children
line wrap: on
line source

module sqrts;

import tango.stdc.math;

double sqrt(double d)
{
    return tango.stdc.math.sqrt(d);
}

void main()
{
}