Changeset b08ef1fd in mainline for uspace/lib/posix/stdio.c
- Timestamp:
- 2011-06-16T02:57:47Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 491e1ee
- Parents:
- 4f4b4e7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.c
r4f4b4e7 rb08ef1fd 111 111 } 112 112 113 /** 114 * 115 * @param stream 116 * @param offset 117 * @param whence 118 * @return 119 */ 120 int posix_fseeko(FILE *stream, posix_off_t offset, int whence) 121 { 122 // TODO 123 not_implemented(); 124 } 125 126 /** 127 * 128 * @param stream 129 * @return 130 */ 131 posix_off_t posix_ftello(FILE *stream) 132 { 133 // TODO 134 not_implemented(); 135 } 136 113 137 /** @} 114 138 */
Note:
See TracChangeset
for help on using the changeset viewer.