Correction to round0 following review.

This commit is contained in:
A. S. Budden
2016-05-31 15:16:50 +01:00
parent 46a2993917
commit 1b9c66d720

View File

@@ -247,7 +247,7 @@ else:
proc exp*(x: float32): float32 {.importc: "Math.exp", nodecl.}
proc exp*(x: float64): float64 {.importc: "Math.exp", nodecl.}
proc round0*(x: float): float {.importc: "Math.round", nodecl.}
proc round0(x: float): float {.importc: "Math.round", nodecl.}
proc pow*(x, y: float32): float32 {.importC: "Math.pow", nodecl.}
proc pow*(x, y: float64): float64 {.importc: "Math.pow", nodecl.}