Changes in uspace/lib/posix/stdio.c [823a929:9b1503e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.c
r823a929 r9b1503e 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 binutils172 not_implemented();173 }174 175 /**176 *177 * @param s178 * @param format179 * @param ...180 * @return181 */182 169 int posix_sscanf(const char *s, const char *format, ...) 183 170 { … … 186 173 } 187 174 188 /**189 *190 * @param path191 * @return192 */193 int posix_remove(const char *path)194 {195 // TODO: low priority, just a compile-time dependency of binutils196 not_implemented();197 }198 199 /**200 *201 * @param s202 * @return203 */204 char *posix_tmpnam(char *s)205 {206 // TODO: low priority, just a compile-time dependency of binutils207 not_implemented();208 }209 210 175 /** @} 211 176 */
Note:
See TracChangeset
for help on using the changeset viewer.