diff options
author | Andreas Schwab <schwab@redhat.com> | 2010-05-21 11:45:17 -0700 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2010-05-24 14:50:24 +0200 |
commit | 269f8e906b4676d8507b1760192008ebe762e12e (patch) | |
tree | 933ed89cce26cdd99af107363a8671cac6d79b58 /sysdeps | |
parent | 12a8f182f36ff959139e761e9160ce2f8b488520 (diff) | |
download | glibc-269f8e906b4676d8507b1760192008ebe762e12e.zip glibc-269f8e906b4676d8507b1760192008ebe762e12e.tar.gz glibc-269f8e906b4676d8507b1760192008ebe762e12e.tar.bz2 |
Make <sys/timex.h> compatible with C++
(cherry picked from commit 5b08ac571ff8e94fe96511a532f0d20997de5f52)
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/timex.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/timex.h b/sysdeps/unix/sysv/linux/sys/timex.h index e10311f..13b94d6 100644 --- a/sysdeps/unix/sysv/linux/sys/timex.h +++ b/sysdeps/unix/sysv/linux/sys/timex.h @@ -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 |