diff options
Diffstat (limited to 'src/stdio/EOF.c')
-rw-r--r-- | src/stdio/EOF.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/stdio/EOF.c b/src/stdio/EOF.c new file mode 100644 index 00000000..84f560a1 --- /dev/null +++ b/src/stdio/EOF.c @@ -0,0 +1,12 @@ +#include <stdio.h> +#define EOF (-1) + +/** end-of-file **/ + +/*** +is a sentinal value used to indicated that a TYPEDEF(FILE) stream has reached +the end of file. +***/ +/* +STDC(1) +*/ |