blob: 6701f6cacab43b26194d19b8626cfacc828f63c4 [file] [edit]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Declaration of the sendmmsg function.
///
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_SYS_SOCKET_SENDMMSG_H
#define LLVM_LIBC_SRC_SYS_SOCKET_SENDMMSG_H
#include "hdr/types/struct_mmsghdr.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
int sendmmsg(int sockfd, struct mmsghdr *msgvec, unsigned int vlen, int flags);
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_SYS_SOCKET_SENDMMSG_H