blob: 8d647cff1e3de7c9669765dfff25aa9f64141c4c [file]
//===----------------------------------------------------------------------===//
//
// 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
/// Definition of the in6addr_loopback constant.
///
//===----------------------------------------------------------------------===//
#include "src/netinet/in6addr_loopback.h"
#include "hdr/netinet_in_macros.h"
#include "hdr/types/struct_in6_addr.h"
#include "src/__support/common.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_VARIABLE(const struct in6_addr,
in6addr_loopback) = IN6ADDR_LOOPBACK_INIT;
} // namespace LIBC_NAMESPACE_DECL