home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 August - Disc 3 / chip_20018103_hu.iso / amiga / chiputil / gg / loadelfwos.lha / LoadElfWOS.lzx / src / error.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-01  |  202 b   |  12 lines

  1. #ifndef PERROR_H
  2. #define PERROR_H
  3. #include <stdio.h>
  4.  
  5. void fatal_error(char *, ...) __attribute__ ((noreturn));
  6. void error_printf(char *, ...);
  7. void info_printf(char *, ...);
  8.  
  9. FILE *infostream;
  10.  
  11. #endif
  12.