Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
377 B

  1. /*
  2. * Copyright (c) 1996 1997, 1998 Philips CE I&C
  3. *
  4. * FILE DEBUG.H
  5. * DATE 7-1-97
  6. * VERSION 1.00
  7. * AUTHOR M.J. Verberne
  8. * DESCRIPTION Defines printf which is used for
  9. * debugging output to the console
  10. * HISTORY
  11. */
  12. #ifndef _DEBUG_
  13. #define _DEBUG_
  14. #include <stdio.h>
  15. #ifndef _DEBUG
  16. #define printf
  17. #else
  18. #endif
  19. #endif