Skip to content

Commit

Permalink
Merge pull request #39 from JuliaLang/kf/headers
Browse files Browse the repository at this point in the history
Remove redundant headers
  • Loading branch information
ViralBShah authored and ararslan committed Feb 3, 2017
1 parent a9f2a61 commit 9929368
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/specfun/e_rem_pio2.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* Optimized by Bruce D. Evans.
*/

#include "cdefs-compat.h"
//__FBSDID("$FreeBSD: src/lib/msun/src/e_rem_pio2.c,v 1.22 2011/06/19 17:07:58 kargl Exp $");

/* __ieee754_rem_pio2(x,y)
Expand All @@ -24,7 +23,14 @@

#include <float.h>

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

#include "math_private.h"

/*
Expand Down

0 comments on commit 9929368

Please sign in to comment.