Changeset 32fb6944 in mainline


Ignore:
Timestamp:
2011-06-19T17:22:02Z (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:
0ffbed9
Parents:
fb90deb
Message:

Let isatty() always return false.

File:
1 edited

Legend:

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

    rfb90deb r32fb6944  
    4040
    4141/**
    42  *
     42 * Dummy function. Always returns false, because there is no easy way to find
     43 * out under HelenOS.
     44 *
    4345 * @param fd
    44  * @return
     46 * @return Always false.
    4547 */
    4648int posix_isatty(int fd)
    4749{
    48         // TODO
    49         not_implemented();
     50        return false;
    5051}
    5152
Note: See TracChangeset for help on using the changeset viewer.