diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-04-14 17:55:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-04-14 17:55:43 +0000 |
commit | f83af095b6fc49de3914f4426202171341783277 (patch) | |
tree | ac1a86e37bb3d15c0a830737c5112b8b90c4a286 /include/sys | |
parent | 29886719b5e20f210f9f0133ca381ca995dbc1e0 (diff) | |
download | glibc-f83af095b6fc49de3914f4426202171341783277.tar glibc-f83af095b6fc49de3914f4426202171341783277.tar.gz glibc-f83af095b6fc49de3914f4426202171341783277.tar.bz2 glibc-f83af095b6fc49de3914f4426202171341783277.zip |
Update.
* include/math.h: Declare __isinf_internal, __isinfl_internal,
__isnan_internal, and __isnanl_internal.
* stdio-common/printf_fp.c: Use INTUSE for calls to __isinf, __isinfl,
__isnan, and __isnanl.
* stdio-common/printf_size.c: Likewise.
* sysdeps/generic/printf_fphex.c: Likewise.
* sysdeps/i386/fpu/s_isinfl.c: Also define _internal alias.
* sysdeps/i386/fpu/s_isnanl.c: Likewise.
* sysdeps/ia64/fpu/s_isinf.S: Likewise.
* sysdeps/ia64/fpu/s_isnan.S: Likewise.
* sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
* sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
* sysdeps/ieee754/flt-32/s_isinff.c: Likewise.
* sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
* sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
* sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
* sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
* sysdeps/m68k/s_isinfl.c: Likewise.
* sysdeps/m68k/fpu/s_isinf.c: Likewise.
* sysdeps/powerpc/fpu/s_isnan.c: Likewise.
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/stat.h | 4 | ||||
-rw-r--r-- | include/sys/time.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/sys/stat.h b/include/sys/stat.h index bb89457e65..16ae6c7125 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -12,9 +12,9 @@ extern int __mkdir (__const char *__path, __mode_t __mode); extern int __mknod (__const char *__path, __mode_t __mode, __dev_t __dev); extern int __fxstat_internal (int __ver, int __fildes, - struct stat *__stat_buf); + struct stat *__stat_buf) attribute_hidden; extern int __fxstat64_internal (int __ver, int __fildes, - struct stat64 *__stat_buf) ; + struct stat64 *__stat_buf) attribute_hidden; extern __inline__ int __stat (__const char *__path, struct stat *__statbuf) { return __xstat (_STAT_VER, __path, __statbuf); diff --git a/include/sys/time.h b/include/sys/time.h index 634fe8a1ed..68fcd86008 100644 --- a/include/sys/time.h +++ b/include/sys/time.h @@ -5,7 +5,7 @@ extern int __gettimeofday (struct timeval *__tv, struct timezone *__tz); extern int __gettimeofday_internal (struct timeval *__tv, - struct timezone *__tz); + struct timezone *__tz) attribute_hidden; extern int __settimeofday (__const struct timeval *__tv, __const struct timezone *__tz); extern int __adjtime (__const struct timeval *__delta, |