--- abi\src\af\util\win\ut_Win32String.cpp.old Thu Mar 22 09:19:41 2001 +++ abi\src\af\util\win\ut_Win32String.cpp Sun Oct 14 01:38:54 2001 @@ -58,5 +58,12 @@ GetTempFileName( szTempPath, "abi", 0, pszBase ); return pszBase; } +void UT_unlink (const char * base) +{ + // note: both remove & unlink are available in VC5, and both + // should perform identically, but remove was choosen since it is ANSI C (stdio.h) + // unlink (base); + remove(base); +}