/* maybe this is correct instead CRTL_VER :
#if defined(__vms) && defined(__DECC) && (__DECC_VER < 60000000)
*/
#   if defined(__vms) && (__CRTL_VER < 70000000)
#define S_ISDIR(x)      (((x) & S_IFMT) == S_IFDIR)
#define S_ISREG(x)      (((x) & S_IFMT) == S_IFREG)
int stat  (const char *__path, struct stat *__buf);
#endif /* __VMS */

