Changeset 8d7e82c1 in mainline for uspace/lib/posix/unistd.c


Ignore:
Timestamp:
2011-06-22T14:07:34Z (13 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
21abb9a
Parents:
f1fae414
Message:

Let isatty() always return false.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/unistd.c

    rf1fae414 r8d7e82c1  
    4343
    4444/**
    45  *
     45 * Dummy function. Always returns false, because there is no easy way to find
     46 * out under HelenOS.
     47 *
    4648 * @param fd
    47  * @return
     49 * @return Always false.
    4850 */
    4951int posix_isatty(int fd)
    5052{
    51         // TODO
    52         not_implemented();
     53        return false;
    5354}
    5455
Note: See TracChangeset for help on using the changeset viewer.