diff options
author | Bruno Haible <bruno@clisp.org> | 2008-12-22 01:26:36 +0100 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2008-12-22 01:26:36 +0100 |
commit | bf7b0efb5ff38f3593264e3598f30baa7f0f5368 (patch) | |
tree | 822a337ded2ca57c3a1fc11d957f628158b6ed6c /lib | |
parent | c8a8dad9250e11c3d92224cf3ae5a213dbcc6103 (diff) | |
download | gnulib-bf7b0efb5ff38f3593264e3598f30baa7f0f5368.tar.gz |
Oops, fix syntax error.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/wcsnrtombs.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/wcsnrtombs.c b/lib/wcsnrtombs.c index 742b857910..23eebc5108 100644 --- a/lib/wcsnrtombs.c +++ b/lib/wcsnrtombs.c @@ -20,9 +20,9 @@ /* Specification. */ #include <wchar.h> -# include <errno.h> -# include <stdlib.h> -# include <string.h> +#include <errno.h> +#include <stdlib.h> +#include <string.h> extern mbstate_t _gl_wcsrtombs_state; @@ -100,5 +100,3 @@ wcsnrtombs (char *dest, const wchar_t **srcp, size_t srclen, size_t len, mbstate return (size_t)(-1); } } - -#endif |