_WCRTLINK int chdir( const CHAR_TYPE *path ) { if ( RdosSetCurDir( path )) return 0; else return 1; }
_WCRTLINK int chdir( const char *path ) { if( RdosSetCurDir( path ) ) { return 0; } else { return 1; } }