blob: c0bd2d2d65b4663ebea3eb56167567a4808b506f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _PRINTF_H
#include <stdio-common/printf.h>
/* Now define the internal interfaces. */
extern int __printf_fphex (FILE *, const struct printf_info *,
const void *const *);
extern int __printf_fp (FILE *, const struct printf_info *,
const void *const *);
libc_hidden_proto (__printf_fp)
#endif
|