blob: 84f560a1a43ca8c34ccd7340721d7bcf37a9fd63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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)
*/
|