~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to dbug/example3.c

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

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
}