mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Make <sys/timex.h> compatible with C++
This commit is contained in:
parent
33b8d90a1b
commit
5b08ac571f
@ -1,3 +1,7 @@
|
||||
2010-05-20 Andreas Schwab <schwab@redhat.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/sys/timex.h: Use __REDIRECT_NTH.
|
||||
|
||||
2010-05-17 Luis Machado <luisgpm@br.ibm.com>
|
||||
|
||||
POWER7 optimizations.
|
||||
|
@ -140,9 +140,9 @@ __BEGIN_DECLS
|
||||
extern int __adjtimex (struct timex *__ntx) __THROW;
|
||||
extern int adjtimex (struct timex *__ntx) __THROW;
|
||||
|
||||
#if defined __GNUC__ && __GNUC__ >= 2
|
||||
extern int ntp_gettime (struct ntptimeval *__ntv)
|
||||
__asm__ ("ntp_gettimex") __THROW;
|
||||
#ifdef __REDIRECT_NTH
|
||||
extern int __REDIRECT_NTH (ntp_gettime, (struct ntptimeval *__ntv),
|
||||
ntp_gettimex);
|
||||
#else
|
||||
extern int ntp_gettimex (struct ntptimeval *__ntv) __THROW;
|
||||
# define ntp_gettime ntp_gettimex
|
||||
|
Loading…
Reference in New Issue
Block a user