+2006-10-19 Bruno Haible <bruno@clisp.org>
+
+ * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
+ for mingw.
+
2006-10-19 Bruno Haible <bruno@clisp.org>
* lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
#include <limits.h>
#include <stdint.h>
+/* Mingw doesn't have SSIZE_MAX. */
+#ifndef SSIZE_MAX
+# define SSIZE_MAX ((((ssize_t)1 << (sizeof (ssize_t) * CHAR_BIT - 2)) - 1) * 2 + 1)
+#endif
+
/* The maximum value that getndelim2 can return without suffering from
overflow problems, either internally (because of pointer
subtraction overflow) or due to the API (because of ssize_t). */