~ubuntu-branches/ubuntu/vivid/asn1c/vivid

« back to all changes in this revision

Viewing changes to samples/sample.source.MEGACO/config.h

  • Committer: Bazaar Package Importer
  • Author(s): W. Borgert
  • Date: 2006-09-23 13:50:05 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060923135005-rmay0d69e5vhunai
* New build, forgot to separate sources/diff.
* New release (closes: #327621).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
extern int opt_debug;
 
3
 
 
4
#define ASN_DEBUG(fmt, args...) do {            \
 
5
                if(opt_debug < 2) break;        \
 
6
                fprintf(stderr, fmt, ##args);   \
 
7
                fprintf(stderr, " (%s:%d)\n",   \
 
8
                        __FILE__, __LINE__);    \
 
9
        } while(0)
 
10