~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to vio/viotest.cc

  • Committer: Monty Taylor
  • Date: 2008-07-05 18:10:38 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705181038-0ih0nnamu5qrut0y
Fixed prototypes. Cleaned define a little bit.

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