Mercurial > hg > octave-lyh
diff src/oct-stream.h @ 3148:8cdcb8945695
[project @ 1998-02-06 21:25:11 by jwe]
author | jwe |
---|---|
date | Fri, 06 Feb 1998 21:27:13 +0000 |
parents | 0d640dc625c7 |
children | fdc7dd08cd85 |
line wrap: on
line diff
--- a/src/oct-stream.h +++ b/src/oct-stream.h @@ -257,7 +257,7 @@ virtual ostream *output_stream (void) { return 0; } - int fileno (void); + int file_number (void); bool ok (void) const { return ! fail; } @@ -412,7 +412,7 @@ return error (clear, err_num); } - int fileno (void) { return rep ? rep->fileno () : -1; } + int file_number (void) { return rep ? rep->file_number () : -1; } bool ok (void) const { return rep && rep->ok (); }