]> sourceware.org Git - glibc.git/commitdiff
fix: Always export ntp_gettimex function
authorLukasz Majewski <lukma@denx.de>
Tue, 23 Mar 2021 10:37:01 +0000 (11:37 +0100)
committerLukasz Majewski <lukma@denx.de>
Tue, 23 Mar 2021 11:23:03 +0000 (12:23 +0100)
After this patch applied the ntp_gettimex function is always declared
in the sys/timex.h header. Currently it is not when __REDIRECT_NTH is
defined (i.e. in ARM 32 bit port).

sysdeps/unix/sysv/linux/sys/timex.h

index 37931ff4967a71ca435408d1e4883bcda14001d7..eb8d15a806050590ed3d4589a46efe38db4ab14b 100644 (file)
@@ -56,12 +56,12 @@ __BEGIN_DECLS
 
 extern int __adjtimex (struct timex *__ntx) __THROW;
 extern int adjtimex (struct timex *__ntx) __THROW;
+extern int ntp_gettimex (struct ntptimeval *__ntv) __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
 #endif
 extern int ntp_adjtime (struct timex *__tntx) __THROW;
This page took 0.49836 seconds and 5 git commands to generate.