stime.c\linux\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/linux/stime.c
blob: 7d0443ba3b668b80d0240964c784f8e78c1e6a84 (plain) (blame)
1
2
3
4
5
6
7
8
9
#define _GNU_SOURCE
#include <time.h>
#include <sys/time.h>
int stime(const time_t *t)
{
	struct timeval tv = { .tv_sec = *t, .tv_usec = 0 };
	return settimeofday(&tv, (void *)0);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月10日 21:53:29 +0000

AltStyle によって変換されたページ (->オリジナル) /