(main): Use remove instead of unlink.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113206
138bc75d-0d04-0410-961f-
82ee72b054a4
+2006-04-23 David Edelsohn <edelsohn@gnu.org>
+
+ * g++.dg/opt/pr15551.C: Include cstdio.
+ (main): Use remove instead of unlink.
+
2006-04-23 Eric Botcazou <ebotcazou@adacore.com>
* gcc.dg/sibcall-7.c: New test.
#include <cstring>
#include <fstream>
+#include <cstdio>
using namespace std;
ostream* logfile;
strcpy(expList, "foo");
delete logfile;
- unlink ("bar");
+ remove ("bar");
return 0;
}