Skip to content

Commit b900812

Browse files
still trying to get GH to recognis isatty
1 parent b7a0c19 commit b900812

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

docs/RetroBASIC reference manual.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,10 @@ In contrast to most dialects, RetroBASIC will allow you to `CONT`inue in most si
510510

511511
The `LIST` does not preserve the original formatting of the file as it was read in or `LOAD`ed, it will reformat it to a cannonical format. This includes things like all keywords being forced to uppercase, adding or removing spaces in various places, and so forth.
512512

513+
#### See also:
514+
515+
* [`LIST#`](#list-file)
516+
513517
<!-- TOC --><a name="load-filename"></a>
514518
### `LOAD` *filename*
515519

src/stdhdr.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Boston, MA 02111-1307, USA. */
4141
#ifndef STDIN_FILENO
4242
#define STDIN_FILENO 0
4343
#endif
44+
int isatty(int);
4445
#else
4546
#include <unistd.h>
4647
#endif

0 commit comments

Comments
 (0)