Skip to content

Commit

Permalink
Clarify comment describing SYS_SY_BUF
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJefferson committed May 6, 2018
1 parent d4ea76b commit 5a3ffa8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sysfiles.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,10 @@ extern const Char * SyWinCmd (
** otherwise confuse Gasman.
*/
typedef struct {
int fp; /* file descriptor for this file */
int echo; /* file descriptor for the echo */
int fp; /* file descriptor for this file. This is used
for input */
int echo; /* file descriptor for the echo. This is used
for output. Is set to 0 if read-only file */
UInt pipe; /* file is really a pipe */
FILE *pipehandle; /* for pipes we need to remember the file handle */
UInt ateof; /* set to 1 by any read operation that hits eof
Expand Down

0 comments on commit 5a3ffa8

Please sign in to comment.