1*43c1707eStholo 2*43c1707eStholo #ifndef __VMS_VER 3*43c1707eStholo #define __VMS_VER 0 4*43c1707eStholo #endif 5*43c1707eStholo #ifndef __DECC_VER 6*43c1707eStholo #define __DECC_VER 0 7*43c1707eStholo #endif 8*43c1707eStholo 9*43c1707eStholo #if __VMS_VER < 70200000 || __DECC_VER < 50700000 10*43c1707eStholo 1150bf276cStholo #include <stdio.h> 1250bf276cStholo #include <unixio.h> 1350bf276cStholo rmdir(path)1450bf276cStholoint rmdir(path) 1550bf276cStholo char *path; 1650bf276cStholo { 1750bf276cStholo chmod(path, 0777); 1850bf276cStholo return remove(path); 1950bf276cStholo } 2050bf276cStholo 21*43c1707eStholo #else /* __VMS_VER >= 70200000 && __DECC_VER >= 50700000 */ 22*43c1707eStholo #pragma message disable EMPTYFILE 23*43c1707eStholo #endif /* __VMS_VER >= 70200000 && __DECC_VER >= 50700000 */ 24