2007-02-23 Jeff Johnston <jjohnstn@redhat.com>

* libm/math/w_pow.c: Fix typo in documentation comment.
This commit is contained in:
Jeff Johnston 2007-02-23 18:29:31 +00:00
parent a76877e977
commit d9edc05f47
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2007-02-23 Jeff Johnston <jjohnstn@redhat.com>
* libm/math/w_pow.c: Fix typo in documentation comment.
2007-02-21 Patrick Mansfield <patmans@us.ibm.com>
* libc/reent/timer.c: Removed (split into two new files).

View file

@ -24,14 +24,14 @@ INDEX
ANSI_SYNOPSIS
#include <math.h>
double pow(double <[x]>, double <[y]>);
float pow(float <[x]>, float <[y]>);
float powf(float <[x]>, float <[y]>);
TRAD_SYNOPSIS
#include <math.h>
double pow(<[x]>, <[y]>);
double <[x]>, <[y]>;
float pow(<[x]>, <[y]>);
float powf(<[x]>, <[y]>);
float <[x]>, <[y]>;
DESCRIPTION