mirror of git://git.musl-libc.org/musl
11 lines
334 B
C
11 lines
334 B
C
#include "time32.h"
|
|
#define _GNU_SOURCE
|
|
#include <time.h>
|
|
#include <sys/socket.h>
|
|
|
|
int __recvmmsg_time32(int fd, struct mmsghdr *msgvec, unsigned int vlen, unsigned int flags, struct timespec32 *ts32)
|
|
{
|
|
return recvmmsg(fd, msgvec, vlen, flags, ts32 ? (&(struct timespec){
|
|
.tv_sec = ts32->tv_sec, .tv_nsec = ts32->tv_nsec}) : 0);
|
|
}
|