diff options
author | Nick Roberts <nickrob@snap.net.nz> | 2006-11-23 05:20:08 +0000 |
---|---|---|
committer | Nick Roberts <nickrob@snap.net.nz> | 2006-11-23 05:20:08 +0000 |
commit | 609b291d247464974304f1f98112156c16235cd6 (patch) | |
tree | 824d0f056247132d2cee9d15a62e23ba53ab4518 /src/strftime.c | |
parent | 09566666c387348d9805d3e4843bfb2dc049c1e7 (diff) | |
download | emacs-609b291d247464974304f1f98112156c16235cd6.tar.gz |
(HAVE_SYS__MBSTATE_T_H): Fix typo.
Diffstat (limited to 'src/strftime.c')
-rw-r--r-- | src/strftime.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/strftime.c b/src/strftime.c index 123763d8845..88800c0d408 100644 --- a/src/strftime.c +++ b/src/strftime.c @@ -69,9 +69,9 @@ extern char *tzname[]; #if DO_MULTIBYTE # if HAVE_MBRLEN # include <wchar.h> -# ifdef HAVE_SYS__MBSTATE_H /* previously tested __hpux */ -# include <sys/_mbstate_t.h> -# endif +# ifdef HAVE_SYS__MBSTATE_T_H /* previously tested __hpux */ +# include <sys/_mbstate_t.h> +# endif # if !defined (mbsinit) && !defined (HAVE_MBSINIT) # define mbsinit(ps) 1 # endif /* !defined (mbsinit) && !defined (HAVE_MBSINIT) */ |