From: Vadim Zeitlin Date: Sat, 6 Jun 2009 23:17:34 +0000 (+0000) Subject: use _unlink() instead of unlink() with VC X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/50a73bb10422d59e57a222568bc8b40ac793ae00 use _unlink() instead of unlink() with VC git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60927 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/textfile/textfiletest.cpp b/tests/textfile/textfiletest.cpp index b85e9444b5..25d3f830f4 100644 --- a/tests/textfile/textfiletest.cpp +++ b/tests/textfile/textfiletest.cpp @@ -25,6 +25,10 @@ #include "wx/ffile.h" #include "wx/textfile.h" +#ifdef __VISUALC__ + #define unlink _unlink +#endif + // ---------------------------------------------------------------------------- // test class // ----------------------------------------------------------------------------