1//===----------------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// Header for <utility> analogues.
11///
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_UTILITY_H
15#define LLVM_LIBC_SRC___SUPPORT_CPP_UTILITY_H
16
17#include "src/__support/CPP/utility/declval.h"
18#include "src/__support/CPP/utility/forward.h"
19#include "src/__support/CPP/utility/in_place.h"
20#include "src/__support/CPP/utility/integer_sequence.h"
21#include "src/__support/CPP/utility/move.h"
22#include "src/__support/CPP/utility/swap.h"
23
24#endif // LLVM_LIBC_SRC___SUPPORT_CPP_UTILITY_H
25