~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to dbug/example3.c

  • Committer: Monty Taylor
  • Date: 2008-07-05 17:07:46 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705170746-8aq11u9fuwtfwy85
Removed my_alarm. Made my_lock only do the non-alarm version. Moved my_lock to MyISAM where it belongs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
main (argc, argv)
 
2
int argc;
 
3
char *argv[];
 
4
{
 
5
#   ifdef DEBUG
 
6
    printf ("argv[0] = %d\n", argv[0]);
 
7
#   endif
 
8
    /*
 
9
     *  Rest of program
 
10
     */
 
11
#   ifdef DEBUG
 
12
    printf ("== done ==\n");
 
13
#   endif
 
14
}