Simplistic log1pf() for vax

This commit is contained in:
martin 2014-03-06 10:58:26 +00:00
parent ae998fcbfa
commit 96c6725640
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: n_log1p.c,v 1.7 2008/04/29 15:10:02 uwe Exp $ */
/* $NetBSD: n_log1p.c,v 1.8 2014/03/06 10:58:26 martin Exp $ */
/*
* Copyright (c) 1985, 1993
* The Regents of the University of California. All rights reserved.
@ -168,3 +168,9 @@ log1p(double x)
/* log(+INF) is INF */
else return(x);
}
float
log1pf(float x)
{
return log1p(x);
}