xref: /aosp_15_r20/external/musl/compat/time32/aio_suspend_time32.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "time32.h"
2 #include <time.h>
3 #include <aio.h>
4 
__aio_suspend_time32(const struct aiocb * const cbs[],int cnt,const struct timespec32 * ts32)5 int __aio_suspend_time32(const struct aiocb *const cbs[], int cnt, const struct timespec32 *ts32)
6 {
7 	return aio_suspend(cbs, cnt, ts32 ? (&(struct timespec){
8 		.tv_sec = ts32->tv_sec, .tv_nsec = ts32->tv_nsec}) : 0);
9 }
10