blob: c116ab4cd4dbf37138baeeb0653a28ef2bce2187 [file] [log] [blame]
// Build don't link:
#include <fstream.h>
class bifstream : public ifstream {
public:
bifstream();
// ~bifstream();
};
void load_bin()
{
bifstream InFile;
if (!InFile)
return;
}