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/armish | |
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/armish')
-rw-r--r-- | sys/arch/armish/include/_float.h | 3 | ||||
-rw-r--r-- | sys/arch/armish/include/float.h | 4 | ||||
-rw-r--r-- | sys/arch/armish/include/internal_types.h | 7 |
3 files changed, 3 insertions, 11 deletions
diff --git a/sys/arch/armish/include/_float.h b/sys/arch/armish/include/_float.h new file mode 100644 index 00000000000..cb8e5c8109f --- /dev/null +++ b/sys/arch/armish/include/_float.h @@ -0,0 +1,3 @@ +/* $OpenBSD: _float.h,v 1.1 2012/06/26 16:12:43 deraadt Exp $ */ + +#include <arm/_float.h> diff --git a/sys/arch/armish/include/float.h b/sys/arch/armish/include/float.h deleted file mode 100644 index fa1d820e389..00000000000 --- a/sys/arch/armish/include/float.h +++ /dev/null @@ -1,4 +0,0 @@ -/* $OpenBSD: float.h,v 1.1 2006/05/29 17:13:19 drahn Exp $ */ -/* $NetBSD: float.h,v 1.3 2001/11/25 15:55:56 thorpej Exp $ */ - -#include <arm/float.h> diff --git a/sys/arch/armish/include/internal_types.h b/sys/arch/armish/include/internal_types.h deleted file mode 100644 index aab63dc574f..00000000000 --- a/sys/arch/armish/include/internal_types.h +++ /dev/null @@ -1,7 +0,0 @@ -/* $OpenBSD: internal_types.h,v 1.2 2011/11/14 14:30:38 deraadt Exp $ */ -/* Public domain */ -#ifndef _MACHINE_INTERNAL_TYPES_H_ -#define _MACHINE_INTERNAL_TYPES_H_ - -#include <arm/internal_types.h> -#endif |