repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
delete a redundant if in dynamic linker ctor execution loop
[musl.git]
/
src
/
linux
/
settimeofday.c
blob
15c18c637972f4a62a86666f6ad865d626487edf
1
#define _BSD_SOURCE
2
#include <sys/time.h>
3
#include
"syscall.h"
4
5
int
settimeofday
(
const struct
timeval
*
tv
,
const struct
timezone
*
tz
)
6
{
7
return
syscall
(
SYS_settimeofday
,
tv
,
0
);
8
}