diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1996-05-01 00:40:10 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1996-05-01 00:40:10 +0000 |
| commit | cdd84b02119661919861a0ce13cffa523d3e93a9 (patch) | |
| tree | b4f19035144b5bb4ec62efb83042948423f85486 /include/runetype.h | |
| parent | 494908b12c364c19a509066a0854da867b467a21 (diff) | |
Notes
Diffstat (limited to 'include/runetype.h')
| -rw-r--r-- | include/runetype.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/include/runetype.h b/include/runetype.h index 057cc35eb633..e7fdf5d74b11 100644 --- a/include/runetype.h +++ b/include/runetype.h @@ -39,13 +39,12 @@ #ifndef _RUNETYPE_H_ #define _RUNETYPE_H_ -#include <machine/ansi.h> #include <sys/cdefs.h> +#include <machine/ansi.h> -#ifdef _BSD_WCHAR_T_ -typedef _BSD_WCHAR_T_ rune_t; -typedef _BSD_WCHAR_T_ wchar_t; -#undef _BSD_WCHAR_T_ +#ifdef _BSD_RUNE_T_ +typedef _BSD_RUNE_T_ rune_t; +#undef _BSD_RUNE_T_ #endif #ifdef _BSD_SIZE_T_ @@ -53,6 +52,11 @@ typedef _BSD_SIZE_T_ size_t; #undef _BSD_SIZE_T_ #endif +#ifdef _BSD_WCHAR_T_ +typedef _BSD_WCHAR_T_ wchar_t; +#undef _BSD_WCHAR_T_ +#endif + #define _CACHED_RUNES (1 <<8 ) /* Must be a power of 2 */ #define _CRMASK (~(_CACHED_RUNES - 1)) |
