blob: 3362414e03890f53d92dc4407c704b7367993d5f [file] [log] [blame]
#include <fstream>
int main(int argc, char **argv)
{
std::fstream fout;
fout.open("targetoutput.h", std::ios::out);
if (!fout)
return 1;
fout << "#define TARGETOUTPUT_DEFINE\n";
fout.close();
return 0;
}