home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / utilities / cli / nspark / error_h < prev    next >
Encoding:
Text File  |  1993-08-20  |  507 b   |  29 lines

  1. /*
  2.  * error/warning report function prototypes
  3.  *
  4.  * $Header: error.h 1.2 92/12/07 $
  5.  * $Log:    error.h,v $
  6.  * Revision 1.2  92/12/07  17:25:36  duplain
  7.  * Changed include files from "xxxarg.h" to <xxxarg.h> .
  8.  * 
  9.  * Revision 1.1  92/09/29  18:02:34  duplain
  10.  * Initial revision
  11.  * 
  12.  */
  13.  
  14. #ifndef __ERROR_H
  15. #define __ERROR_H
  16.  
  17. #include "cproto.h"
  18.  
  19. #ifdef ANSI_C
  20. #include <stdarg.h>
  21. #else
  22. #include <varargs.h>
  23. #endif
  24.  
  25. void error P__((char *fmt, ...));
  26. void warning P__((char *fmt, ...));
  27.  
  28. #endif /* __ERROR_H */
  29.