Make <sys/timex.h> compatible with C++

This commit is contained in:
Andreas Schwab 2010-05-21 11:45:17 -07:00 committed by Ulrich Drepper
parent 33b8d90a1b
commit 5b08ac571f
2 changed files with 7 additions and 3 deletions

View File

@ -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.

View File

@ -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