diff options
Diffstat (limited to 'libc/sysdeps/i386')
-rw-r--r-- | libc/sysdeps/i386/crti.S | 5 | ||||
-rw-r--r-- | libc/sysdeps/i386/crtn.S | 5 | ||||
-rw-r--r-- | libc/sysdeps/i386/fpu/math_private.h | 2 | ||||
-rw-r--r-- | libc/sysdeps/i386/fpu/s_fpclassifyl.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/i386/fpu/s_isinfl.c | 4 | ||||
-rw-r--r-- | libc/sysdeps/i386/fpu/s_isnanl.c | 4 | ||||
-rw-r--r-- | libc/sysdeps/i386/fpu/s_nextafterl.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/i386/fpu/s_nexttoward.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/i386/fpu/s_nexttowardf.c | 2 |
9 files changed, 13 insertions, 15 deletions
diff --git a/libc/sysdeps/i386/crti.S b/libc/sysdeps/i386/crti.S index dfec2cbcd..2ecc40d3c 100644 --- a/libc/sysdeps/i386/crti.S +++ b/libc/sysdeps/i386/crti.S @@ -30,9 +30,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ /* crti.S puts a function prologue at the beginning of the .init and .fini sections and defines global symbols for those addresses, so diff --git a/libc/sysdeps/i386/crtn.S b/libc/sysdeps/i386/crtn.S index 2ea2a382c..ad038fd4e 100644 --- a/libc/sysdeps/i386/crtn.S +++ b/libc/sysdeps/i386/crtn.S @@ -30,9 +30,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ /* crtn.S puts function epilogues in the .init and .fini sections corresponding to the prologues in crti.S. */ diff --git a/libc/sysdeps/i386/fpu/math_private.h b/libc/sysdeps/i386/fpu/math_private.h index 8a5185137..5253998a5 100644 --- a/libc/sysdeps/i386/fpu/math_private.h +++ b/libc/sysdeps/i386/fpu/math_private.h @@ -15,5 +15,5 @@ do \ } \ while (0) -#include <math/math_private.h> +#include_next <math_private.h> #endif diff --git a/libc/sysdeps/i386/fpu/s_fpclassifyl.c b/libc/sysdeps/i386/fpu/s_fpclassifyl.c index c7fd703cb..3643db925 100644 --- a/libc/sysdeps/i386/fpu/s_fpclassifyl.c +++ b/libc/sysdeps/i386/fpu/s_fpclassifyl.c @@ -19,7 +19,7 @@ #include <math.h> -#include "math_private.h" +#include <math_private.h> int diff --git a/libc/sysdeps/i386/fpu/s_isinfl.c b/libc/sysdeps/i386/fpu/s_isinfl.c index 7c9a82bed..cdd77183f 100644 --- a/libc/sysdeps/i386/fpu/s_isinfl.c +++ b/libc/sysdeps/i386/fpu/s_isinfl.c @@ -14,8 +14,8 @@ static char rcsid[] = "$NetBSD: $"; * no branching! */ -#include "math.h" -#include "math_private.h" +#include <math.h> +#include <math_private.h> int __isinfl(long double x) { diff --git a/libc/sysdeps/i386/fpu/s_isnanl.c b/libc/sysdeps/i386/fpu/s_isnanl.c index b00ee8832..816396d8f 100644 --- a/libc/sysdeps/i386/fpu/s_isnanl.c +++ b/libc/sysdeps/i386/fpu/s_isnanl.c @@ -23,8 +23,8 @@ static char rcsid[] = "$NetBSD: $"; * no branching! */ -#include "math.h" -#include "math_private.h" +#include <math.h> +#include <math_private.h> int __isnanl(long double x) { diff --git a/libc/sysdeps/i386/fpu/s_nextafterl.c b/libc/sysdeps/i386/fpu/s_nextafterl.c index f0325b7fc..bafe7437f 100644 --- a/libc/sysdeps/i386/fpu/s_nextafterl.c +++ b/libc/sysdeps/i386/fpu/s_nextafterl.c @@ -26,7 +26,7 @@ static char rcsid[] = "$NetBSD: $"; * Special cases: */ -#include "math.h" +#include <math.h> #include <math_private.h> long double __nextafterl(long double x, long double y) diff --git a/libc/sysdeps/i386/fpu/s_nexttoward.c b/libc/sysdeps/i386/fpu/s_nexttoward.c index 075d0fd98..e5f0164ce 100644 --- a/libc/sysdeps/i386/fpu/s_nexttoward.c +++ b/libc/sysdeps/i386/fpu/s_nexttoward.c @@ -26,7 +26,7 @@ static char rcsid[] = "$NetBSD: $"; * Special cases: */ -#include "math.h" +#include <math.h> #include <math_private.h> #include <float.h> diff --git a/libc/sysdeps/i386/fpu/s_nexttowardf.c b/libc/sysdeps/i386/fpu/s_nexttowardf.c index 0a540403e..89e877148 100644 --- a/libc/sysdeps/i386/fpu/s_nexttowardf.c +++ b/libc/sysdeps/i386/fpu/s_nexttowardf.c @@ -18,7 +18,7 @@ static char rcsid[] = "$NetBSD: $"; #endif -#include "math.h" +#include <math.h> #include <math_private.h> #include <float.h> |