| 1 | #ifndef _PRINTF_H |
|---|---|
| 2 | |
| 3 | #include <stdio-common/printf.h> |
| 4 | #include <xlocale.h> |
| 5 | |
| 6 | /* Now define the internal interfaces. */ |
| 7 | extern int __printf_fphex (FILE *, const struct printf_info *, |
| 8 | const void *const *); |
| 9 | extern int __printf_fp (FILE *, const struct printf_info *, |
| 10 | const void *const *); |
| 11 | libc_hidden_proto (__printf_fp) |
| 12 | extern int __printf_fp_l (FILE *, locale_t, const struct printf_info *, |
| 13 | const void *const *); |
| 14 | libc_hidden_proto (__printf_fp_l) |
| 15 | |
| 16 | #endif |
| 17 |