diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-11-18 23:36:03 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-11-18 23:36:03 +0200 |
commit | 6edb8f2c771b73d2cadf8e8c42b1d85c805b46f5 (patch) | |
tree | 1308a4c6a9bb825a2799794d7102b86364caef3f /unsupported/tandem/isatty.c | |
parent | 6f3612539c425da2bc1d34db621696e6a273b01c (diff) | |
download | egawk-6edb8f2c771b73d2cadf8e8c42b1d85c805b46f5.tar.gz egawk-6edb8f2c771b73d2cadf8e8c42b1d85c805b46f5.tar.bz2 egawk-6edb8f2c771b73d2cadf8e8c42b1d85c805b46f5.zip |
Remove unsupported / obsolete files. Add files for bootstrapping.
Diffstat (limited to 'unsupported/tandem/isatty.c')
-rw-r--r-- | unsupported/tandem/isatty.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/unsupported/tandem/isatty.c b/unsupported/tandem/isatty.c deleted file mode 100644 index d73d7a34..00000000 --- a/unsupported/tandem/isatty.c +++ /dev/null @@ -1,22 +0,0 @@ -#include <cextdecs(FILE_GETINFO_)> -#include <stdioh> -#include <talh> - -int isatty(int fd) -{ - short cret,sfd,typ[5]; - sfd = (short) fd; - cret = FILE_GETINFO_(sfd,,,,,&typ[0]); - if(typ[0] == 6) - return (1); - else - return (0); -} -int dup(int fd) -{ - return (fd); -} -int dup2(int fd, int fd2) -{ - return (0); -} |