Oops, fix syntax error.
authorBruno Haible <bruno@clisp.org>
Mon, 22 Dec 2008 00:26:36 +0000 (01:26 +0100)
committerBruno Haible <bruno@clisp.org>
Mon, 22 Dec 2008 00:26:36 +0000 (01:26 +0100)
lib/wcsnrtombs.c

index 742b857..23eebc5 100644 (file)
@@ -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