home *** CD-ROM | disk | FTP | other *** search
/ Internet Publisher's Toolbox 2.0 / Internet Publisher's Toolbox.iso / internet / ntserver / wtsource / panic.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-16  |  629 b   |  34 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.
  4.  
  5.    Brewster@think.com
  6. */
  7.  
  8. /* Copyright (c) CNIDR (see ../COPYRIGHT) */
  9.  
  10.  
  11. /* Header file for panic.c */
  12.  
  13. #ifndef PANIC_H
  14. #define PANIC_H
  15.  
  16. #include "cdialect.h"
  17.  
  18. #ifdef __cplusplus
  19. /* declare these as C style functions */
  20. extern "C"
  21.     {
  22. #endif /* def __cplusplus */
  23.  
  24. #ifdef ANSI_LIKE    /* use ansi */
  25. void    panic _AP((char* format,...)); 
  26. #else /* use K & R */
  27. void    panic _AP(()); 
  28. #endif
  29.  
  30. #ifdef __cplusplus
  31.     }
  32. #endif /* def __cplusplus */
  33. #endif /* ndef PANIC_H */
  34.