~ubuntu-branches/ubuntu/precise/mysql-5.5/precise-201203300109

« back to all changes in this revision

Viewing changes to dbug/example3.c

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2011-11-08 11:31:13 UTC
  • Revision ID: package-import@ubuntu.com-20111108113113-3ulw01fvi4vn8m25
Tags: upstream-5.5.17
ImportĀ upstreamĀ versionĀ 5.5.17

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
}