| 1 | #include "time32.h" |
| 2 | #include <time.h> |
| 3 | #include <signal.h> |
| 4 | |
| 5 | int __sigtimedwait_time32(const sigset_t *restrict set, siginfo_t *restrict si, const struct timespec32 *restrict ts32) |
| 6 | { |
| 7 | 	return sigtimedwait(set, si, !ts32 ? 0 : (&(struct timespec){ |
| 8 | 		.tv_sec = ts32->tv_sec, .tv_nsec = ts32->tv_nsec})); |
| 9 | } |