fix incorrect (and conflicting on LP64 archs) types for sysv ipc msgq functions
[musl] / src / time / clock_gettime.c
1 #include <time.h>
2 #include "syscall.h"
3
4 int clock_gettime(clockid_t clk, struct timespec *ts)
5 {
6         return syscall(SYS_clock_gettime, clk, ts);
7 }