diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-05-14 21:29:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-05-14 21:29:42 +0000 |
commit | 848438d4e85c57fe47424113fb3d654f444b5327 (patch) | |
tree | b12756078b9f5f15bcf625855f225a4f9856d7bf /include/stdio.h | |
parent | c9f1fc22d1e7b8e30ac662fa61bc27f32f9d684a (diff) | |
download | glibc-848438d4e85c57fe47424113fb3d654f444b5327.tar.gz glibc-848438d4e85c57fe47424113fb3d654f444b5327.tar.xz glibc-848438d4e85c57fe47424113fb3d654f444b5327.zip |
Update.
2002-05-14 Ulrich Drepper <drepper@redhat.com> * include/stdio.h: Remove references to old stdio implementation. * libio/Makefile (bug-ungetwc2-ENV): Define. * hurd/hurdchdir.c (_hurd_change_directory_port_from_name): Allocate three, not two, more than LEN when appending '/.'. * sysdeps/mach/hurd/chroot.c (chroot): Likewise. Don't check if NAME ends with '/.' if it is shorter than 2 chars.
Diffstat (limited to 'include/stdio.h')
-rw-r--r-- | include/stdio.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/include/stdio.h b/include/stdio.h index 0eddd7d8b2..e5228f267e 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -1,13 +1,8 @@ #ifndef _STDIO_H # if defined __need_FILE || defined __need___FILE -# ifdef USE_IN_LIBIO -# include <libio/stdio.h> -# else -# include <stdio/stdio.h> -# endif +# include <libio/stdio.h> # else -# ifdef USE_IN_LIBIO -# include <libio/stdio.h> +# include <libio/stdio.h> /* Now define the internal interfaces. */ extern int __fcloseall (void); @@ -36,9 +31,6 @@ extern FILE *__new_tmpfile (void); extern FILE *__old_tmpfile (void); -# else -# include <stdio/stdio.h> -# endif # define __need_size_t # include <stddef.h> |