home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 September / pcwk_09_96.iso / demo / wgelectr / pk51demo / files.2 / INC / ERRNO.H < prev    next >
C/C++ Source or Header  |  1994-02-10  |  400b  |  13 lines

  1. /* ERRNO.H: ANSI standard include file              */
  2. /* Copyright KEIL ELEKTRONIK GmbH 1994 V1.00        */
  3.  
  4. #ifndef    _ERRNO_INCLUDED
  5. #define _ERRNO_INCLUDED
  6. #define errno  (0)
  7.  
  8. /* Floating point errors, currently not implemented in libraries          */
  9. #define    ERANGE        1    /* Value out of range                     */
  10. #define    EDOM        2    /* Floating point domain error            */
  11.  
  12. #endif
  13.