diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-06-26 16:12:46 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-06-26 16:12:46 +0000 |
commit | 1cdad6ce05fd7bf2982518678ba9eaf90ab317b7 (patch) | |
tree | 6563431024031fdbd95c5482d69461e6975efd51 /sys/arch/sgi | |
parent | 98d4eeada8bec1625d6a480d3139018eb12b9abd (diff) |
create new machine/_float.h which is namespace clean. create a new
MI float.h which pulls in and defines the values that are needed from
there, and repair sys/limits.h so that it defines the values it needs
as well (depending on POSIX version, XPG version, etc). guenther has
a more exact selection of that coming for limits.h.
this also fixes a few mistakes for the vax.
reviewed by kettenis and guenther.
Diffstat (limited to 'sys/arch/sgi')
-rw-r--r-- | sys/arch/sgi/include/_float.h | 3 | ||||
-rw-r--r-- | sys/arch/sgi/include/float.h | 5 | ||||
-rw-r--r-- | sys/arch/sgi/include/internal_types.h | 3 |
3 files changed, 3 insertions, 8 deletions
diff --git a/sys/arch/sgi/include/_float.h b/sys/arch/sgi/include/_float.h new file mode 100644 index 00000000000..e7b4a14c95b --- /dev/null +++ b/sys/arch/sgi/include/_float.h @@ -0,0 +1,3 @@ +/* $OpenBSD: _float.h,v 1.1 2012/06/26 16:12:44 deraadt Exp $ */ + +#include <mips64/_float.h> diff --git a/sys/arch/sgi/include/float.h b/sys/arch/sgi/include/float.h deleted file mode 100644 index 6d6aefba17c..00000000000 --- a/sys/arch/sgi/include/float.h +++ /dev/null @@ -1,5 +0,0 @@ -/* $OpenBSD: float.h,v 1.1 2004/08/06 21:12:19 pefo Exp $ */ - -/* Use Mips generic include file */ - -#include <mips64/float.h> diff --git a/sys/arch/sgi/include/internal_types.h b/sys/arch/sgi/include/internal_types.h deleted file mode 100644 index ecfa665964e..00000000000 --- a/sys/arch/sgi/include/internal_types.h +++ /dev/null @@ -1,3 +0,0 @@ -/* $OpenBSD: internal_types.h,v 1.1 2004/08/06 21:12:19 pefo Exp $ */ - -#include <mips64/internal_types.h> |