/* ** STDIO.H -- Standard Small-C Definitions ** ** Copyright 1984 L. E. Payne and J. E. Hendrix ** ** Keyed in from DDJ by Earl Boebert */ #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 /*make consistent with Small C*/