123456789101112131415161718192021222324252627 |
- #include <features.h>
- #ifdef __USE_GNU
- #include "_stdio.h"
- #include <stdarg.h>
- int dprintf(int filedes, const char * __restrict format, ...)
- {
- va_list arg;
- int rv;
- va_start(arg, format);
- rv = vdprintf(filedes, format, arg);
- va_end(arg);
- return rv;
- }
- #endif
|