Changeset 4f4b4e7 in mainline for uspace/lib/posix/unistd.c
- Timestamp:
- 2011-06-15T23:38:45Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b08ef1fd
- Parents:
- ab547063
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/unistd.c
rab547063 r4f4b4e7 1 1 /* 2 2 * Copyright (c) 2011 Jiri Zarevucky 3 * Copyright (c) 2011 Petr Koupy 3 4 * All rights reserved. 4 5 * … … 27 28 */ 28 29 30 /** @addtogroup libposix 31 * @{ 32 */ 33 /** @file 34 */ 35 36 #define POSIX_INTERNAL 37 38 #include "common.h" 29 39 #include "unistd.h" 30 40 31 int isatty(int fd) { 41 /** 42 * 43 * @param fd 44 * @return 45 */ 46 int posix_isatty(int fd) 47 { 32 48 // TODO 33 return 0;49 not_implemented(); 34 50 } 35 51 52 /** @} 53 */
Note:
See TracChangeset
for help on using the changeset viewer.