mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
f83af095b6
* 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.
25 lines
865 B
C
25 lines
865 B
C
#ifndef _SYS_TIME_H
|
|
#include <time/sys/time.h>
|
|
|
|
/* Now document the internal interfaces. */
|
|
extern int __gettimeofday (struct timeval *__tv,
|
|
struct timezone *__tz);
|
|
extern int __gettimeofday_internal (struct timeval *__tv,
|
|
struct timezone *__tz) attribute_hidden;
|
|
extern int __settimeofday (__const struct timeval *__tv,
|
|
__const struct timezone *__tz);
|
|
extern int __adjtime (__const struct timeval *__delta,
|
|
struct timeval *__olddelta);
|
|
extern int __getitimer (enum __itimer_which __which,
|
|
struct itimerval *__value);
|
|
extern int __setitimer (enum __itimer_which __which,
|
|
__const struct itimerval *__restrict __new,
|
|
struct itimerval *__restrict __old);
|
|
extern int __utimes (__const char *__file, const struct timeval __tvp[2]);
|
|
|
|
#ifndef NOT_IN_libc
|
|
# define __gettimeofday(tv, tz) INTUSE(__gettimeofday) (tv, tz)
|
|
#endif
|
|
|
|
#endif
|