home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / e2fltsrc.zip / debug.h next >
C/C++ Source or Header  |  1995-07-24  |  1KB  |  26 lines

  1. /************************************************************************/
  2. /*  Linux partition filter (C) Deon van der Westhuysen.                 */
  3. /*                                                                      */
  4. /*  Dedicated to Jesus Christ, my Lord and Saviour.                     */
  5. /*                                                                      */
  6. /*  Permission is granted to freely use and modify this code for non-   */
  7. /*  profit use on the condition that this notice is not removed. All    */
  8. /*  other rights are reserved. No warranty, etc.                        */
  9. /*                                                                      */
  10. /*  This code is still under development; expect some rough edges.      */
  11. /*                                                                      */
  12. /************************************************************************/
  13.  
  14. #ifndef _DEBUG_H_
  15. #define _DEBUG_H_
  16.  
  17. #define DEBUG
  18.  
  19. #ifdef DEBUG
  20. #define BREAK    asm { int 3 }
  21. #else
  22. #define BREAK
  23. #endif
  24.  
  25. #endif
  26.