home *** CD-ROM | disk | FTP | other *** search
- /*
- ** STDIO.H -- Standard Small-C Definitions
- **
- ** Copyright 1984 L. E. Payne and J. E. Hendrix
- **
- ** Keyed in from DDJ by Earl Boebert
- **
- ** Deleted definitions to prevent macro queue overflow
- */
- #define stdin 0
- #define stdout 1
- #define stderr 2
- /*#define ERR (-2)*/
- #define EOF (-1)
- #define YES 1
- #define NO 0
- #define NULL 0
- #define CR 13
- /*#define LF 10*/
- /*#define BELL 7*/
- /*#define SPACE ' '*/
- #define NEWLINE CR /*to be consistent with the handbook*/
-