Skip to content

Commit

Permalink
Merge pull request #43 from JuliaLang/kf/nonopenlibm
Browse files Browse the repository at this point in the history
Corrections for non-openlibm build
  • Loading branch information
Keno authored and ararslan committed Feb 3, 2017
1 parent 0adef22 commit 892d457
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/specfun/k_rem_pio2.c
Expand Up @@ -11,7 +11,6 @@
* ====================================================
*/

#include "cdefs-compat.h"
//__FBSDID("$FreeBSD: src/lib/msun/src/k_rem_pio2.c,v 1.11 2008/02/25 11:43:20 bde Exp $");

/*
Expand Down Expand Up @@ -131,7 +130,11 @@

#include <float.h>

#include "openlibm.h"
#ifdef USE_OPENLIBM
# include <openlibm.h>
#else
# include <math.h>
#endif
#include "math_private.h"

static const int init_jk[] = {3,4,4,6}; /* initial value for jk */
Expand Down

0 comments on commit 892d457

Please sign in to comment.