mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
03bac9acad
2000-12-26 Andreas Jaeger <aj@suse.de> * libio/getc_u.c: Include stdio.h via system path to get internal prototypes. * libio/getwc_u.c: Likewise. * stdlib/strfmon.c: Fix prototype of __printf_fp. * stdio-common/vfprintf.c (process_arg): Move __printf_fphex and __printf_fp prototypes to ... * include/printf.h: ...here. * include/stdio.h: Add some internal prototypes to shut up GCC. * include/stdlib.h: Likewise. * sysdeps/posix/sigpause.c (__sigpause): Use ISO C prototype declaration. * include/signal.h: Add prototypes for internal sigpause interfaces.
12 lines
280 B
C
12 lines
280 B
C
#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 *);
|
|
|
|
#endif
|