~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to vio/viotest.cc

  • Committer: Monty Taylor
  • Date: 2008-07-05 11:20:18 UTC
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: monty@inaugust.com-20080705112018-fr12kkmgphtu7m29
Changes so that removal of duplicate curr_dir from my_sys.h work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
        int             fd = -1;
23
23
        char*           hh = "hshshsh\n";
24
24
 
 
25
        DBUG_ENTER("main");
 
26
        DBUG_PROCESS(argv[0]);
 
27
        DBUG_PUSH("d:t");
 
28
 
25
29
        fd = open("/dev/tty", O_WRONLY);
26
30
        if (fd<0)
27
31
        {
38
42
        delete fs;
39
43
        delete ss;
40
44
 
41
 
        return(0);
 
45
        DBUG_RETURN(0);
42
46
}
43
47