Fix soft-fp fma for -Wuninitialized.
[glibc.git] / sysdeps / unix / sysv / linux / internal_recvmmsg.S
blob6b776b9d6a78d2f6a2bb1886f732d1ae43d8715f
1 #include <kernel-features.h>
2 #include <sys/syscall.h>
4 /* Do not use the recvmmsg syscall on socketcall architectures unless
5    it was added at the same time as the socketcall support or can be
6    assumed to be present.  */
7 #if defined __ASSUME_SOCKETCALL \
8     && !defined __ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL \
9     && !defined __ASSUME_RECVMMSG_SYSCALL
10 # undef __NR_recvmmsg
11 #endif
13 #if !defined __NR_recvmmsg && defined __NR_socketcall
14 # define socket recvmmsg
15 # ifdef __ASSUME_RECVMMSG_SOCKETCALL
16 #  define __socket recvmmsg
17 # else
18 #  define __socket __internal_recvmmsg
19 # endif
20 # define NARGS 5
21 # define NEED_CANCELLATION
22 # define NO_WEAK_ALIAS
23 # include <socket.S>
24 #endif