about summary refs log tree commit diff
path: root/compat/time32/clock_settime32.c
blob: 7ca4f0e9c79d2776fa76c1abb780c2255ed147ec (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "time32.h"
#include <time.h>

int __clock_settime32(clockid_t clk, const struct timespec32 *ts32)
{
	return clock_settime(clk, (&(struct timespec){
		.tv_sec = ts32->tv_sec,
		.tv_nsec = ts32->tv_nsec}));
}