+2003-05-12 Bruno Haible <bruno@clisp.org>
+
+ * msginit.c (F_OK): Provide a fallback value.
+ Reported by Perry Rapp.
+
2003-05-10 Bruno Haible <bruno@clisp.org>
* msgl-iconv.c (iconv_string): Don't return -1 just because the string
#define _(str) gettext (str)
#define N_(str) (str)
+/* Get F_OK. It is lacking from <fcntl.h> on Woe32. */
+#ifndef F_OK
+# define F_OK 0
+#endif
+
#define SIZEOF(a) (sizeof(a) / sizeof(a[0]))
extern const char * _nl_locale_name (int category, const char *categoryname);