#include <stdio.h>

#include <proto/dos.h>

int rename(const char *old,const char *new)
{
    return(Rename((STRPTR)old,(STRPTR)new));
}
