home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21src.lzh / STDIO.H < prev   
Encoding:
C/C++ Source or Header  |  1992-12-08  |  512 b   |  24 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. ** Deleted definitions to prevent macro queue overflow
  9. */
  10. #define stdin 0
  11. #define stdout  1
  12. #define stderr  2
  13. /*#define ERR (-2)*/
  14. #define EOF (-1)
  15. #define YES 1
  16. #define NO  0
  17. #define NULL  0
  18. #define CR  13
  19. /*#define LF  10*/
  20. /*#define BELL  7*/
  21. /*#define SPACE  ' '*/
  22. #define NEWLINE CR   /*to be consistent with the handbook*/
  23.  
  24.