Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Oct 2000 10:14:47 +0000 (GMT)
From:      "Steven G. Kargl" <kargl@C456086-A.bllvu1.wa.home.com>
To:        freebsd-current@freebsd.org
Subject:   lib/msun breakage; patch included.
Message-ID:  <200010151014.e9FAElH10177@C456086-A.bllvu1.wa.home.com>

next in thread | raw e-mail | index | archive | help
The recent changes to machine/endian.h introduced breakage in 
lib.msun because of out-of-order include files.

Steve


*** /usr/src/lib/msun/src/math_private.h.orig	Sun Oct 15 10:09:10 2000
--- /usr/src/lib/msun/src/math_private.h	Sun Oct 15 10:09:20 2000
***************
*** 17,24 ****
  #ifndef _MATH_PRIVATE_H_
  #define _MATH_PRIVATE_H_
  
- #include <machine/endian.h>
  #include <sys/types.h>
  
  /* The original fdlibm code used statements like:
  	n0 = ((*(int*)&one)>>29)^1;		* index of high word *
--- 17,24 ----
  #ifndef _MATH_PRIVATE_H_
  #define _MATH_PRIVATE_H_
  
  #include <sys/types.h>
+ #include <machine/endian.h>
  
  /* The original fdlibm code used statements like:
  	n0 = ((*(int*)&one)>>29)^1;		* index of high word *


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200010151014.e9FAElH10177>