=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/stdio.h,v retrieving revision 1.42 retrieving revision 1.43 diff -c -r1.42 -r1.43 *** src/include/stdio.h 2012/03/21 23:44:35 1.42 --- src/include/stdio.h 2013/01/30 00:08:13 1.43 *************** *** 1,4 **** ! /* $OpenBSD: stdio.h,v 1.42 2012/03/21 23:44:35 fgsch Exp $ */ /* $NetBSD: stdio.h,v 1.18 1996/04/25 18:29:21 jtc Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: stdio.h,v 1.43 2013/01/30 00:08:13 brad Exp $ */ /* $NetBSD: stdio.h,v 1.18 1996/04/25 18:29:21 jtc Exp $ */ /*- *************** *** 212,217 **** --- 212,220 ---- */ __BEGIN_DECLS void clearerr(FILE *); + #if __POSIX_VISIBLE >= 200809 + int dprintf(int, const char * __restrict, ...); + #endif int fclose(FILE *); int feof(FILE *); int ferror(FILE *); *************** *** 272,277 **** --- 275,283 ---- int vfprintf(FILE *, const char *, __va_list); int vprintf(const char *, __va_list); int vsprintf(char *, const char *, __va_list); + #if __POSIX_VISIBLE >= 200809 + int vdprintf(int, const char * __restrict, __va_list); + #endif #if __ISO_C_VISIBLE >= 1999 || __BSD_VISIBLE int snprintf(char *, size_t, const char *, ...)