Changeset 823a929 in mainline for uspace/lib/posix/stdio.c
- Timestamp:
- 2011-06-23T23:57:33Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e64b55a
- Parents:
- da084d9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.c
rda084d9 r823a929 167 167 * @return 168 168 */ 169 int posix_vsprintf(char *s, const char *format, va_list ap) 170 { 171 // TODO: low priority, just a compile-time dependency of binutils 172 not_implemented(); 173 } 174 175 /** 176 * 177 * @param s 178 * @param format 179 * @param ... 180 * @return 181 */ 169 182 int posix_sscanf(const char *s, const char *format, ...) 170 183 { … … 173 186 } 174 187 188 /** 189 * 190 * @param path 191 * @return 192 */ 193 int posix_remove(const char *path) 194 { 195 // TODO: low priority, just a compile-time dependency of binutils 196 not_implemented(); 197 } 198 199 /** 200 * 201 * @param s 202 * @return 203 */ 204 char *posix_tmpnam(char *s) 205 { 206 // TODO: low priority, just a compile-time dependency of binutils 207 not_implemented(); 208 } 209 175 210 /** @} 176 211 */
Note:
See TracChangeset
for help on using the changeset viewer.