Instead of pulling in all of <wchar.h>, just define wchar_t here.

Addresses PR lib/29987.
This commit is contained in:
kleink 2005-04-18 19:47:51 +00:00
parent 4e3cae58ff
commit 9020a25f08
1 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: inttypes.h,v 1.3 2005/02/03 04:39:32 perry Exp $ */
/* $NetBSD: inttypes.h,v 1.4 2005/04/18 19:47:51 kleink Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -41,7 +41,12 @@
#include <sys/cdefs.h>
#include <sys/inttypes.h>
#include <wchar.h>
#include <machine/ansi.h>
#ifdef _BSD_WCHAR_T_
typedef _BSD_WCHAR_T_ wchar_t;
#undef _BSD_WCHAR_T_
#endif
__BEGIN_DECLS
intmax_t strtoimax(const char * __restrict,