Use <openlibm.h> consistently.

This commit is contained in:
Ed Schouten 2015-01-09 13:15:01 +01:00
parent 17688c4487
commit beb387c4b2
26 changed files with 27 additions and 26 deletions

View File

@ -24,7 +24,7 @@
* acoshl(NaN) is NaN without signal.
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -28,7 +28,7 @@
*
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -46,7 +46,7 @@
* only coshl(0)=1 is exact for finite x.
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -73,7 +73,7 @@
/* Exponential function */
#include <float.h>
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -16,7 +16,7 @@
* Method: shift and subtract
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -42,7 +42,7 @@
* than 1 ulps (units in the last place)
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -69,7 +69,7 @@
*
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -59,7 +59,7 @@
*
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -58,7 +58,7 @@
*
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -60,7 +60,7 @@
*
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -59,7 +59,7 @@
*
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -44,7 +44,7 @@
* only sinhl(0)=0 is exact for finite x.
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -16,7 +16,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -21,7 +21,7 @@
* := signl(x)*log1pl(|x| + x^2/(1 + sqrtl(1+x^2)))
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -19,7 +19,7 @@
* Inexact flag raised if x not equal to ceil(x).
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -91,7 +91,7 @@
* erfc/erf(NaN) is NaN
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -54,7 +54,7 @@
*/
#include <errno.h>
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -19,7 +19,7 @@
* Inexact flag raised if x not equal to floor(x).
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -54,7 +54,7 @@
* IEEE -1, 8 100000 1.9e-34 4.3e-35
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -20,7 +20,7 @@
* No exception.
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -17,7 +17,7 @@
* Special cases:
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -17,8 +17,8 @@
* Special cases:
*/
#include <math.h>
#include <float.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -10,7 +10,7 @@
* ====================================================
*/
#include <math.h>
#include <openlibm.h>
#include "math_private.h"

View File

@ -14,7 +14,7 @@
#include <machine/ieee.h>
#include <float.h>
#include <math.h>
#include <openlibm.h>
#include <stdint.h>
#include "math_private.h"

View File

@ -50,7 +50,8 @@
* only tanhl(0)=0 is exact for finite argument.
*/
#include "math.h"
#include <openlibm.h>
#include "math_private.h"
static const long double one = 1.0, two = 2.0, tiny = 1.0e-4900L;

View File

@ -24,7 +24,7 @@
#include <machine/ieee.h>
#include <float.h>
#include <math.h>
#include <openlibm.h>
#include <stdint.h>
#include "math_private.h"