mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-15 21:05:24 +08:00
Include "system.h" after wctype.h (not before) to avoid
a compilation error on Solaris 5.5.1 systems.
This commit is contained in:
parent
82cd6af9bc
commit
ad3a1fbb82
15
src/wc.c
15
src/wc.c
@ -26,11 +26,6 @@
|
||||
#include <stdio.h>
|
||||
#include <getopt.h>
|
||||
#include <sys/types.h>
|
||||
#include "system.h"
|
||||
#include "closeout.h"
|
||||
#include "error.h"
|
||||
#include "human.h"
|
||||
#include "safe-read.h"
|
||||
|
||||
/* Get mbstate_t, mbrtowc(), wcwidth(). */
|
||||
#if HAVE_WCHAR_H
|
||||
@ -45,6 +40,16 @@
|
||||
# define iswprint(wc) 1
|
||||
#endif
|
||||
|
||||
/* Include this after wctype.h so that we `#undef' ISPRINT
|
||||
(from Solaris's euc.h, from widec.h, from wctype.h) before
|
||||
redefining and using it. */
|
||||
#include "system.h"
|
||||
|
||||
#include "closeout.h"
|
||||
#include "error.h"
|
||||
#include "human.h"
|
||||
#include "safe-read.h"
|
||||
|
||||
/* Some systems, like BeOS, have multibyte encodings but lack mbstate_t. */
|
||||
#if HAVE_MBRTOWC && defined mbstate_t
|
||||
# define mbrtowc(pwc, s, n, ps) (mbrtowc) (pwc, s, n, 0)
|
||||
|
Loading…
Reference in New Issue
Block a user