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. */
10extern int __printf_fphex (FILE *, const struct printf_info *,
11 const void *const *);
12extern int __printf_fp (FILE *, const struct printf_info *,
13 const void *const *);
14libc_hidden_proto (__printf_fp)
15extern int __printf_fp_l (FILE *, locale_t, const struct printf_info *,
16 const void *const *);
17libc_hidden_proto (__printf_fp_l)
18
19# endif /* !_ISOMAC */
20#endif
21