mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 18:40:14 +00:00
79937577d1
2004-09-13 Ulrich Drepper <drepper@redhat.com> * misc/sys/cdefs.h: Restore old definition of __P. * csu/munch.awk: Remove uses of __P and __PMT. * gmon/gmon.c: Likewise. * hesiod/hesiod.h: Likewise. * include/stdio.h: Likewise. * io/fts.c: Likewise. * libio/genops.c: Likewise. * libio/libioP.h: Likewise. * libio/fileops.c: Likewise. * libio/iolibio.h: Likewise. * libio/libio.h: Likewise. * libio/memstream.c: Likewise. * libio/oldfileops.c: Likewise. * libio/oldstdfiles.c: Likewise. * libio/iopopen.c: Likewise. * libio/vsnprintf.c: Likewise. * libio/vswprintf.c: Likewise. * libio/wgenops.c: Likewise. * libio/oldiopopen.c: Likewise. * locale/programs/xmalloc.c: Likewise. * locale/programs/xstrdup.c: Likewise. * malloc/mtrace.c: Likewise. * misc/getttyent.c: Likewise. * misc/getusershell.c: Likewise. * nis/rpcsvc/ypupd.h: Likewise. * posix/fnmatch.h: Likewise. * posix/glob.h: Likewise. * resolv/arpa/nameser.h: Likewise. * resolv/gethnamaddr.c: Likewise. * resolv/resolv.h: Likewise. * resolv/inet_net_ntop.c: Likewise. * resolv/inet_net_pton.c: Likewise. * resolv/res_init.c: Likewise. * resolv/nss_dns/dns-network.c: Likewise. * stdio-common/vfprintf.c: Likewise. * stdio-common/reg-printf.c: Likewise. * sysdeps/generic/chflags.c: Likewise. * sysdeps/generic/fchflags.c: Likewise. * sysdeps/generic/glob.c: Likewise. * sysdeps/generic/printf_fphex.c: Likewise. * sysdeps/generic/memcmp.c: Likewise. * sysdeps/generic/memcopy.h: Likewise. * sysdeps/generic/morecore.c: Likewise. * sysdeps/generic/sstk.c: Likewise. * sysdeps/posix/sigvec.c: Likewise. * sysdeps/posix/ttyname_r.c: Likewise. * sysdeps/standalone/arm/bits/errno.h: Likewise. * sysdeps/standalone/standalone.h: Likewise. * sysdeps/standalone/i386/force_cpu386/brdinit.c: Likewise. * sysdeps/standalone/i386/force_cpu386/_exit.c: Likewise. * sysdeps/unix/arm/start.c: Likewise. * sysdeps/unix/bsd/sigaction.c: Likewise. * sysdeps/unix/bsd/sun/m68k/sigtramp.c: Likewise. * sysdeps/unix/bsd/sun/sparc/sigtramp.c: Likewise. * sysdeps/unix/bsd/sun/sunos4/wait4.c: Likewise. * sysdeps/unix/bsd/ultrix4/mips/sigvec.c: Likewise. * sysdeps/unix/bsd/ultrix4/sysconf.c: Likewise. * sysdeps/unix/sparc/start.c: Likewise. * sysdeps/unix/sysv/getdents.c: Likewise. * sysdeps/unix/sysv/irix4/fpathconf.c: Likewise. * sysdeps/unix/sysv/irix4/getgroups.c: Likewise. * sysdeps/unix/sysv/irix4/getpriority.c: Likewise. * sysdeps/unix/sysv/irix4/getrusage.c: Likewise. * sysdeps/unix/sysv/irix4/pathconf.c: Likewise. * sysdeps/unix/sysv/irix4/setgroups.c: Likewise. * sysdeps/unix/sysv/irix4/sigtramp.c: Likewise. * sysdeps/unix/sysv/irix4/start.c: Likewise. * sysdeps/unix/sysv/irix4/sysconf.c: Likewise. * sysdeps/unix/sysv/sco3.2.4/__setpgid.c: Likewise. * sysdeps/unix/sysv/sco3.2.4/getgroups.c: Likewise. * sysdeps/unix/sysv/sysv4/__getpgid.c: Likewise. * sysdeps/unix/sysv/sysv4/__setpgid.c: Likewise. * sysdeps/unix/sysv/sysv4/getpgid.c: Likewise. * sysdeps/unix/sysv/sysv4/setpgid.c: Likewise. * sysdeps/unix/sysv/sysv4/sethostname.c: Likewise. * sysdeps/unix/sysv/sysv4/setsid.c: Likewise. * sysdeps/unix/sysv/sysv4/sysconf.c: Likewise. * sysdeps/unix/sysv/sysv4/waitpid.c: Likewise. * sysdeps/unix/sysv/sysv4/solaris2/getdents.c: Likewise. * time/tzset.c: Likewise. * time/strftime_l.c: Likewise. * time/strptime_l.c: Likewise. * crypt/md5.h: Likewise.
102 lines
4.7 KiB
C
102 lines
4.7 KiB
C
#include <libio.h>
|
|
|
|
/* These emulate stdio functionality, but with a different name
|
|
(_IO_ungetc instead of ungetc), and using _IO_FILE instead of FILE. */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int _IO_fclose (_IO_FILE*) __THROW;
|
|
extern int _IO_new_fclose (_IO_FILE*) __THROW;
|
|
extern int _IO_old_fclose (_IO_FILE*) __THROW;
|
|
extern _IO_FILE *_IO_fdopen (int, const char*) __THROW;
|
|
extern _IO_FILE *_IO_old_fdopen (int, const char*) __THROW;
|
|
extern _IO_FILE *_IO_new_fdopen (int, const char*) __THROW;
|
|
extern int _IO_fflush (_IO_FILE*) __THROW;
|
|
extern int _IO_fgetpos (_IO_FILE*, _IO_fpos_t*) __THROW;
|
|
extern int _IO_fgetpos64 (_IO_FILE*, _IO_fpos64_t*) __THROW;
|
|
extern char* _IO_fgets (char*, int, _IO_FILE*) __THROW;
|
|
extern _IO_FILE *_IO_fopen (const char*, const char*) __THROW;
|
|
extern _IO_FILE *_IO_old_fopen (const char*, const char*) __THROW;
|
|
extern _IO_FILE *_IO_new_fopen (const char*, const char*) __THROW;
|
|
extern _IO_FILE *_IO_fopen64 (const char*, const char*) __THROW;
|
|
extern _IO_FILE *__fopen_internal (const char*, const char*, int) __THROW;
|
|
extern _IO_FILE *__fopen_maybe_mmap (_IO_FILE *) __THROW;
|
|
extern int _IO_fprintf (_IO_FILE*, const char*, ...) __THROW;
|
|
extern int _IO_fputs (const char*, _IO_FILE*) __THROW;
|
|
libc_hidden_proto (_IO_fputs)
|
|
extern int _IO_fsetpos (_IO_FILE*, const _IO_fpos_t *) __THROW;
|
|
extern int _IO_fsetpos64 (_IO_FILE*, const _IO_fpos64_t *) __THROW;
|
|
extern long int _IO_ftell (_IO_FILE*) __THROW;
|
|
extern _IO_size_t _IO_fread (void*, _IO_size_t, _IO_size_t, _IO_FILE*) __THROW;
|
|
extern _IO_size_t _IO_fwrite (const void*, _IO_size_t, _IO_size_t, _IO_FILE*)
|
|
__THROW;
|
|
extern char* _IO_gets (char*) __THROW;
|
|
extern void _IO_perror (const char*) __THROW;
|
|
extern int _IO_printf (const char*, ...) __THROW;
|
|
extern int _IO_puts (const char*) __THROW;
|
|
extern int _IO_scanf (const char*, ...) __THROW;
|
|
extern void _IO_setbuffer (_IO_FILE *, char*, _IO_size_t) __THROW;
|
|
extern int _IO_setvbuf (_IO_FILE*, char*, int, _IO_size_t) __THROW;
|
|
extern int _IO_sscanf (const char*, const char*, ...) __THROW;
|
|
extern int _IO_sprintf (char *, const char*, ...) __THROW;
|
|
extern int _IO_ungetc (int, _IO_FILE*) __THROW;
|
|
extern int _IO_vsscanf (const char *, const char *, _IO_va_list) __THROW;
|
|
extern int _IO_vsprintf (char*, const char*, _IO_va_list) __THROW;
|
|
extern int _IO_vswprintf (wchar_t*, _IO_size_t, const wchar_t*, _IO_va_list)
|
|
__THROW;
|
|
|
|
struct obstack;
|
|
extern int _IO_obstack_vprintf (struct obstack *, const char *, _IO_va_list)
|
|
__THROW;
|
|
extern int _IO_obstack_printf (struct obstack *, const char *, ...) __THROW;
|
|
#ifndef _IO_pos_BAD
|
|
#define _IO_pos_BAD ((_IO_off64_t)(-1))
|
|
#endif
|
|
#define _IO_clearerr(FP) ((FP)->_flags &= ~(_IO_ERR_SEEN|_IO_EOF_SEEN))
|
|
#define _IO_fseek(__fp, __offset, __whence) \
|
|
(_IO_seekoff_unlocked (__fp, __offset, __whence, _IOS_INPUT|_IOS_OUTPUT) \
|
|
== _IO_pos_BAD ? EOF : 0)
|
|
#define _IO_rewind(FILE) \
|
|
(void) _IO_seekoff_unlocked (FILE, 0, 0, _IOS_INPUT|_IOS_OUTPUT)
|
|
#define _IO_vprintf(FORMAT, ARGS) \
|
|
INTUSE(_IO_vfprintf) (_IO_stdout, FORMAT, ARGS)
|
|
#define _IO_freopen(FILENAME, MODE, FP) \
|
|
(INTUSE(_IO_file_close_it)(FP), \
|
|
INTUSE(_IO_file_fopen)(FP, FILENAME, MODE, 1))
|
|
#define _IO_old_freopen(FILENAME, MODE, FP) \
|
|
(_IO_old_file_close_it (FP), _IO_old_file_fopen(FP, FILENAME, MODE))
|
|
#define _IO_freopen64(FILENAME, MODE, FP) \
|
|
(INTUSE(_IO_file_close_it)(FP), \
|
|
INTUSE(_IO_file_fopen)(FP, FILENAME, MODE, 0))
|
|
#define _IO_fileno(FP) ((FP)->_fileno)
|
|
extern _IO_FILE* _IO_popen (const char*, const char*) __THROW;
|
|
extern _IO_FILE* _IO_new_popen (const char*, const char*) __THROW;
|
|
extern _IO_FILE* _IO_old_popen (const char*, const char*) __THROW;
|
|
extern int __new_pclose (_IO_FILE *) __THROW;
|
|
extern int __old_pclose (_IO_FILE *) __THROW;
|
|
#define _IO_pclose _IO_fclose
|
|
#define _IO_setbuf(_FP, _BUF) INTUSE(_IO_setbuffer)(_FP, _BUF, _IO_BUFSIZ)
|
|
#define _IO_setlinebuf(_FP) INTUSE(_IO_setvbuf)(_FP, NULL, 1, 0)
|
|
|
|
_IO_FILE *__new_freopen (const char *, const char *, _IO_FILE *) __THROW;
|
|
_IO_FILE *__old_freopen (const char *, const char *, _IO_FILE *) __THROW;
|
|
|
|
/* Prototype for functions with alternative entry point. */
|
|
extern void _IO_setbuffer_internal (_IO_FILE *, char*, _IO_size_t) __THROW;
|
|
extern _IO_size_t _IO_fread_internal (void*, _IO_size_t, _IO_size_t, _IO_FILE*)
|
|
__THROW;
|
|
extern _IO_FILE *_IO_fdopen_internal (int, const char*) __THROW;
|
|
extern int _IO_vsprintf_internal (char*, const char*, _IO_va_list) __THROW;
|
|
extern int _IO_fflush_internal (_IO_FILE*) __THROW;
|
|
extern _IO_size_t _IO_fwrite_internal (const void*, _IO_size_t,
|
|
_IO_size_t, _IO_FILE*) __THROW;
|
|
extern long int _IO_ftell_internal (_IO_FILE*) __THROW;
|
|
extern int _IO_fputs_internal (const char*, _IO_FILE*) __THROW;
|
|
extern int _IO_setvbuf_internal (_IO_FILE*, char*, int, _IO_size_t) __THROW;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|