Add support for using time64 on big-endian machines.
[uclibc-ng.git] / libc / sysdeps / linux / common / adjtimex.c
blobf45d54371c6e13c0848a01c95c14218b380c4151
1 /*
2 * adjtimex() for uClibc
4 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7 */
9 #include <sys/syscall.h>
10 #include <sys/timex.h>
13 _syscall1(int, adjtimex, struct timex *, buf)
14 libc_hidden_def(adjtimex)
15 weak_alias(adjtimex,__adjtimex)
16 #if defined __UCLIBC_NTP_LEGACY__
17 strong_alias(adjtimex,ntp_adjtime)
18 #endif