From d9edc05f47edef645e8b80abdd937820a41d51d4 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Fri, 23 Feb 2007 18:29:31 +0000 Subject: [PATCH] 2007-02-23 Jeff Johnston * libm/math/w_pow.c: Fix typo in documentation comment. --- newlib/ChangeLog | 4 ++++ newlib/libm/math/w_pow.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/newlib/ChangeLog b/newlib/ChangeLog index a1c290e68..a2d6a6383 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2007-02-23 Jeff Johnston + + * libm/math/w_pow.c: Fix typo in documentation comment. + 2007-02-21 Patrick Mansfield * libc/reent/timer.c: Removed (split into two new files). diff --git a/newlib/libm/math/w_pow.c b/newlib/libm/math/w_pow.c index d54cd3adb..787142100 100644 --- a/newlib/libm/math/w_pow.c +++ b/newlib/libm/math/w_pow.c @@ -24,14 +24,14 @@ INDEX ANSI_SYNOPSIS #include double pow(double <[x]>, double <[y]>); - float pow(float <[x]>, float <[y]>); + float powf(float <[x]>, float <[y]>); TRAD_SYNOPSIS #include double pow(<[x]>, <[y]>); double <[x]>, <[y]>; - float pow(<[x]>, <[y]>); + float powf(<[x]>, <[y]>); float <[x]>, <[y]>; DESCRIPTION