From d18ea0c5e669dd48ccceccfc90ff458dc333a81f Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 23 May 2012 13:33:15 +0200 Subject: Remove use of INTDEF/INTUSE in libio --- sysdeps/ieee754/ldbl-opt/nldbl-compat.c | 10 +++++----- sysdeps/mach/hurd/tmpfile.c | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-compat.c b/sysdeps/ieee754/ldbl-opt/nldbl-compat.c index 2de3ab5392..18893b8dec 100644 --- a/sysdeps/ieee754/ldbl-opt/nldbl-compat.c +++ b/sysdeps/ieee754/ldbl-opt/nldbl-compat.c @@ -1,5 +1,5 @@ /* *printf* family compatibility routines for IEEE double as long double - Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 2006-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. @@ -167,7 +167,7 @@ __nldbl_vfprintf (FILE *s, const char *fmt, va_list ap) { int done; set_no_long_double (); - done = INTUSE(_IO_vfprintf) (s, fmt, ap); + done = _IO_vfprintf (s, fmt, ap); clear_no_long_double (); return done; } @@ -180,7 +180,7 @@ __nldbl__IO_vsprintf (char *string, const char *fmt, va_list ap) { int done; __no_long_double = 1; - done = INTUSE(_IO_vsprintf) (string, fmt, ap); + done = _IO_vsprintf (string, fmt, ap); __no_long_double = 0; return done; } @@ -338,7 +338,7 @@ __nldbl__IO_vfscanf (FILE *s, const char *fmt, _IO_va_list ap, { int res; set_no_long_double (); - res = INTUSE(_IO_vfscanf) (s, fmt, ap, errp); + res = _IO_vfscanf (s, fmt, ap, errp); clear_no_long_double (); return res; } @@ -349,7 +349,7 @@ __nldbl___vfscanf (FILE *s, const char *fmt, va_list ap) { int res; set_no_long_double (); - res = INTUSE(_IO_vfscanf) (s, fmt, ap, NULL); + res = _IO_vfscanf (s, fmt, ap, NULL); clear_no_long_double (); return res; } diff --git a/sysdeps/mach/hurd/tmpfile.c b/sysdeps/mach/hurd/tmpfile.c index 5b16d85ed8..94b1380da4 100644 --- a/sysdeps/mach/hurd/tmpfile.c +++ b/sysdeps/mach/hurd/tmpfile.c @@ -1,5 +1,5 @@ /* Open a stdio stream on an anonymous temporary file. Hurd version. - Copyright (C) 2001,2002,2003 Free Software Foundation, Inc. + Copyright (C) 2001-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -56,7 +56,7 @@ __tmpfile (void) /* Open a stream on the unnamed file. It will cease to exist when this stream is closed. */ - if ((f = INTUSE(_IO_fdopen) (fd, "w+b")) == NULL) + if ((f = _IO_fdopen (fd, "w+b")) == NULL) __close (fd); return f; -- cgit 1.4.1