Changes in uspace/lib/posix/stdio.c [9b1503e:823a929] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.c
r9b1503e 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.