* tFile.cc (t4): Cast TMPFILE to char* in the call to unlink, to
solve warning problems with vxworks headers that leave const off
their declarations.
Brought over from devo.
From-SVN: r17044
+1997-10-31 Brendan Kehoe <brendan@lisa.cygnus.com>
+
+ * tFile.cc (t4): Cast TMPFILE to char* in the call to unlink, to
+ solve warning problems with vxworks headers that leave const off
+ their declarations.
+
Tue May 20 17:57:31 1997 Jeffrey A Law (law@cygnus.com)
* tfformat.c (main): Only run half the testcases if SLOW_SIMULATOR
tf.remove();
#else
tf.close();
- unlink(tempfile);
+ unlink((char*)tempfile);
#endif
assert(!tf.is_open());
}