adjtimex_time32.c 176 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
#include "time32.h"
#include <time.h>
#include <sys/timex.h>

struct timex32;

int __adjtimex_time32(struct timex32 *tx32)
{
	return __clock_adjtime32(CLOCK_REALTIME, tx32);
}