home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntlib32.zoo / errbase.h < prev    next >
C/C++ Source or Header  |  1993-06-17  |  437b  |  27 lines

  1. /*
  2.  * Errno defs to be included in *.ss floating point routines, from <errno.h>
  3.  *   -- hyc@hanauma.jpl.nasa.gov, 9-17-92
  4.  */
  5. #define AssemB
  6. #include "errno.h"
  7. #undef  AssemB
  8.  
  9.     .globl    _errno
  10.  
  11. Edom    =    EDOM
  12. Erange    =    ERANGE
  13.  
  14. #ifdef __MBASE__
  15. #define Errno    __MBASE__@(_errno)
  16. #define Stderr    __MBASE__@(__iob+52)
  17. #else
  18. #define Errno    _errno
  19. #define Stderr    __iob+52
  20. #endif
  21.  
  22. #ifdef __MSHORT__
  23. #define Emove    movew
  24. #else
  25. #define Emove    movel
  26. #endif
  27.