time.c\time\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/time/time.c
blob: ad0480f9ea942bcab3cd2257a61fbd4637e161d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <time.h>
#include "syscall.h"
time_t time(time_t *t)
{
	struct timespec ts;
	__clock_gettime(CLOCK_REALTIME, &ts);
	if (t) *t = ts.tv_sec;
	return ts.tv_sec;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月15日 22:25:47 +0000

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