Commit c7ba5f8d by Francois-Xavier Coudert Committed by François-Xavier Coudert

re PR libfortran/24383 (mingw doesn't have SSIZE_MAX)

	PR libfortran/24383
	* io/unix.c: Add fallback definition for SSIZE_MAX.

From-SVN: r105768
parent bf9d2177
2005-10-21 Francois-Xavier Coudert <coudert@clipper.ens.fr>
PR libfortran/24383
* io/unix.c: Add fallback definition for SSIZE_MAX.
2005-10-19 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* c99_protos.h: Define preprocessor HAVE_ macros with value 1
......
......@@ -46,6 +46,10 @@ Boston, MA 02110-1301, USA. */
#include "libgfortran.h"
#include "io.h"
#ifndef SSIZE_MAX
#define SSIZE_MAX SHRT_MAX
#endif
#ifndef PATH_MAX
#define PATH_MAX 1024
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment