home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / nasm20b / nasm_src / error.h < prev    next >
C/C++ Source or Header  |  1993-01-19  |  1KB  |  49 lines

  1. /* ---------------------------------------------------------------------- */
  2. /*                   Copyright (C) 1991 by Natürlich!                     */
  3. /*                      This file is copyrighted!                         */
  4. /*                Refer to the documentation for details.                 */
  5. /* ---------------------------------------------------------------------- */
  6. #ifndef _ERROR_
  7. #define _ERROR_   1
  8.  
  9. #if LINKER
  10. # define nterror   nserror
  11. #endif
  12.  
  13. #if __NSTDC__ && TOS && __TURBOC__
  14. void           nwarning( char *),
  15.                nmessage( char *),
  16.                nswarning( char *, char *),
  17.                nerror( char *),
  18. #if ! LINKER
  19.                nterror( char *, int),
  20.                nberror( char *, unsigned),
  21. #endif
  22.                nierror( char *),
  23.                nferror( char *),
  24.                nserror( char *, char *),
  25.                ngerror( long, char *),
  26.                ngferror( long, char *),
  27.                npanic( char *),
  28.                nexit( int),
  29.                nharhar( char *);
  30. #else
  31. void           nwarning(),
  32.                nmessage(),
  33.                nswarning(),
  34.                nerror(),
  35.                nierror(),
  36. #if ! LINKER
  37.                nterror(),
  38.                nberror(),
  39. #endif
  40.                nferror(),
  41.                ngerror(),
  42.                ngferror(),
  43.                nserror(),
  44.                npanic(),
  45.                nexit(),
  46.                nharhar();
  47. #endif
  48. #endif
  49.