From 7f0244deedca55b65c74130fcc940ceb20c74516 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sun, 17 Mar 2002 12:09:12 +0000 Subject: Update. 2002-03-17 Andreas Jaeger * sysdeps/mips/fpu/fraiseexcpt.c (__feraiseexcept): Set cause bits. * sysdeps/mips/fpu/fgetexcptflg.c (__fegetexceptflag): Add comment. * sysdeps/mips/fpu/fclrexcpt.c (__feclearexcept): Clear also cause bits. * sysdeps/mips/fpu/fenv_libc.h (CAUSE_MASK): New. (CAUSE_SHIFT): New. Patch by Hartvig Ekner . * sysdeps/generic/unwind-dw2-fde-glibc.c: Add prototypes. * sysdeps/generic/unwind-pe.h: Likewise. * libio/iofdopen.c (_IO_new_fdopen): Pass parameter of correct type to _IO_setb. * libio/stdio.c (AL2): Define variant when visibility attribute is not supported. * include/libc-symbols.h (_INTVARDEF): Define variant when visibility attribute is not supported. --- libio/iofdopen.c | 2 +- libio/stdio.c | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) (limited to 'libio') diff --git a/libio/iofdopen.c b/libio/iofdopen.c index ee8caa3604..1c76ba7a4f 100644 --- a/libio/iofdopen.c +++ b/libio/iofdopen.c @@ -132,7 +132,7 @@ _IO_new_fdopen (fd, mode) #endif if (INTUSE(_IO_file_attach) ((_IO_FILE *) &new_f->fp, fd) == NULL) { - INTUSE(_IO_setb) (&new_f->fp, NULL, NULL, 0); + INTUSE(_IO_setb) (&new_f->fp.file, NULL, NULL, 0); INTUSE(_IO_un_link) (&new_f->fp); free (new_f); return NULL; diff --git a/libio/stdio.c b/libio/stdio.c index 64a8ab2d57..8dc24ed98f 100644 --- a/libio/stdio.c +++ b/libio/stdio.c @@ -40,9 +40,14 @@ _IO_FILE *stderr = (FILE *) &_IO_2_1_stderr_; #undef _IO_stderr #ifdef _LIBC # define AL(name) AL2 (name, _IO_##name) -# define AL2(name, al) \ - extern __typeof (name) al __attribute__ ((alias (#name), \ - visibility ("hidden"))) +# if defined HAVE_VISIBILITY_ATTRIBUTE +# define AL2(name, al) \ + extern __typeof (name) al __attribute__ ((alias (#name), \ + visibility ("hidden"))) +# else +# define AL2(name, al) \ + extern __typeof (name) al __attribute__ ((alias (#name))) +# endif AL(stdin); AL(stdout); AL(stderr); -- cgit 1.4.1