home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / STDIO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-25  |  512 b   |  21 lines

  1. /*
  2. ** STDIO.H -- Standard Small-C Definitions
  3. **
  4. ** Copyright 1984 L. E. Payne and J. E. Hendrix
  5. **
  6. ** Keyed in from DDJ by Earl Boebert
  7. */
  8. #define stdin 0
  9. #define stdout  1
  10. #define stderr  2
  11. #define ERR (-2)
  12. #define EOF (-1)
  13. #define YES 1
  14. #define NO  0
  15. #define NULL  0
  16. #define CR  13
  17. #define LF  10
  18. #define BELL  7
  19. #define SPACE ' '
  20. #define NEWLINE CR  /*make consistent with Small C*/
  21.