Commit b654d8ce by Arnaud Charlet

re PR ada/23187 (MAXPATHLEN usage in gcc/ada/*.c)

PR ada/23187
(GNAT_MAXPATH_LEN): Use default value if MAXPATHLEN is undefined.

From-SVN: r103600
parent a7c92c0b
......@@ -263,7 +263,11 @@ const int __gnat_vmsp = 0;
#include <sys/param.h>
#endif
#ifdef MAXPATHLEN
#define GNAT_MAX_PATH_LEN MAXPATHLEN
#else
#define GNAT_MAX_PATH_LEN 256
#endif
#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