#include <stdio.h>
#ifndef REGTEST
#include "_PDCLIB_glue.h"
#include <errno.h>
int _PDCLIB_rename( const char * old, const char * new )
{
errno = ENOTSUP;
return -1;
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
#include <stdlib.h>
int main( void )
{
return TEST_RESULTS;
}
#endif