diff options
author | Mike Barcroft <mike@FreeBSD.org> | 2002-08-21 16:20:02 +0000 |
---|---|---|
committer | Mike Barcroft <mike@FreeBSD.org> | 2002-08-21 16:20:02 +0000 |
commit | abbd8902334e8c6409384593b4a2c81f939b47b4 (patch) | |
tree | 7e9e16e835d265de592c113ee6c5d85f9be039cb /sys/sparc64/include/endian.h | |
parent | 9884a53c1a3e4753e347c793df6af4bd0298eab2 (diff) | |
download | src-abbd8902334e8c6409384593b4a2c81f939b47b4.tar.gz src-abbd8902334e8c6409384593b4a2c81f939b47b4.zip |
o Merge <machine/ansi.h> and <machine/types.h> into a new header
called <machine/_types.h>.
o <machine/ansi.h> will continue to live so it can define MD clock
macros, which are only MD because of gratuitous differences between
architectures.
o Change all headers to make use of this. This mainly involves
changing:
#ifdef _BSD_FOO_T_
typedef _BSD_FOO_T_ foo_t;
#undef _BSD_FOO_T_
#endif
to:
#ifndef _FOO_T_DECLARED
typedef __foo_t foo_t;
#define _FOO_T_DECLARED
#endif
Concept by: bde
Reviewed by: jake, obrien
Notes
Notes:
svn path=/head/; revision=102227
Diffstat (limited to 'sys/sparc64/include/endian.h')
-rw-r--r-- | sys/sparc64/include/endian.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/include/endian.h b/sys/sparc64/include/endian.h index 830cf2e008a7..e8ee18400ae2 100644 --- a/sys/sparc64/include/endian.h +++ b/sys/sparc64/include/endian.h @@ -38,7 +38,7 @@ #define _MACHINE_ENDIAN_H_ #include <sys/cdefs.h> -#include <machine/ansi.h> +#include <sys/_types.h> /* * Define the order of 32-bit words in 64-bit words. |