1
0
mirror of https://github.com/openbsd/src.git synced 2026-06-18 07:13:36 +02:00

POSIX 2008 TC2 requires <inttypes.h> to provide wchar_t

ok kettenis@ espie@
This commit is contained in:
guenther
2022-07-31 01:27:31 +00:00
parent fd00aceb18
commit e0b9be3e0f
+4 -1
View File
@@ -1,4 +1,4 @@
/* $OpenBSD: inttypes.h,v 1.13 2019/01/25 00:19:25 millert Exp $ */
/* $OpenBSD: inttypes.h,v 1.14 2022/07/31 01:27:31 guenther Exp $ */
/*
* Copyright (c) 1997, 2005 Todd C. Miller <millert@openbsd.org>
@@ -23,6 +23,9 @@
#ifdef __cplusplus
#define __wchar_t wchar_t
#elif __POSIX_VISIBLE >= 200809 && !defined(_WCHAR_T_DEFINED_)
#define _WCHAR_T_DEFINED_
typedef __wchar_t wchar_t;
#endif
/*