home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d160 / calls.lha / Calls / debug.h < prev    next >
Text File  |  1988-10-02  |  303b  |  8 lines

  1.  
  2.  
  3. #define DEBUG0(X,F)            if ( (X) <= debug ) printf( F ) 
  4. #define DEBUG1(X,F,A)        if ( (X) <= debug ) printf(F,A) 
  5. #define DEBUG2(X,F,A,B)        if ( (X) <= debug ) printf(F,A,B) 
  6. #define DEBUG3(X,F,A,B,C)    if ( (X) <= debug ) printf(F,A,B,C) 
  7. #define DEBUG4(X,F,A,B,C,D)    if ( (X) <= debug ) printf(F,A,B,C,D) 
  8.