| 1 | #ifndef _PRINTF_H |
|---|---|
| 2 | |
| 3 | #include <stdio-common/printf.h> |
| 4 | |
| 5 | # ifndef _ISOMAC |
| 6 | |
| 7 | #include <bits/types/locale_t.h> |
| 8 | |
| 9 | /* Now define the internal interfaces. */ |
| 10 | extern int __printf_fphex (FILE *, const struct printf_info *, |
| 11 | const void *const *) attribute_hidden; |
| 12 | extern int __printf_fp (FILE *, const struct printf_info *, |
| 13 | const void *const *); |
| 14 | libc_hidden_proto (__printf_fp) |
| 15 | extern int __printf_fp_l (FILE *, locale_t, const struct printf_info *, |
| 16 | const void *const *); |
| 17 | libc_hidden_proto (__printf_fp_l) |
| 18 | |
| 19 | extern unsigned int __guess_grouping (unsigned int intdig_max, |
| 20 | const char *grouping) |
| 21 | attribute_hidden; |
| 22 | |
| 23 | # endif /* !_ISOMAC */ |
| 24 | #endif |
| 25 |