home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue2 / SDL.ARC / !unixlib / source / clib / sys / h / debug < prev    next >
Encoding:
Text File  |  2004-09-24  |  643 b   |  31 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: /usr/local/cvsroot/gccsdk/unixlib/source/clib/sys/debug.h,v $
  4.  * $Date: 2004/09/23 22:16:39 $
  5.  * $Revision: 1.4 $
  6.  * $State: Exp $
  7.  * $Author: joty $
  8.  *
  9.  ***************************************************************************/
  10.  
  11. #ifdef DEBUG
  12.  
  13. #ifndef __SYS_DEBUG_H
  14. #define __SYS_DEBUG_H
  15.  
  16. #ifndef __UNIXLIB_FEATURES_H
  17. #include <unixlib/features.h>
  18. #endif
  19.  
  20. __BEGIN_DECLS
  21.  
  22. /* __debug(s) dumps UNIX status with title __s.  __s may be NULL when there
  23.    is no title to be printed.  */
  24. extern void __debug(const char *__s);
  25.  
  26. __END_DECLS
  27.  
  28. #endif
  29.  
  30. #endif
  31.