home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / cb / sources / stdio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1985-09-12  |  368 b   |  20 lines

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