/*
 * File:   main.cpp
 * Author: vova7890
 *
 * Created on 2 Август 2011 г., 11:34
 */

#include <swilib.h>
#include <cstdlib>
#include <string>
#include <iostream>
#include <fstream>
/*
using namespace std;



int main(int argc, char** argv)
{
    fstream file;
    file.open ("0:\\Misc\\elf3\\log.txt", std::ios::out | std::ios::in | std::ios::app);

    char buf[128] = "Hello";
    file << buf << endl;
    file.close();


    kill_elf();
    return 0;
}

*/



