[ARM][AArch64] Use SelectionDAG::SplitScalar to simplify some code. (#74411)
[llvm-project.git] / libc / src / threads / mtx_destroy.cpp
blob5ee4777f5b2c2eb0da85d1f481eb4f1ac07b8b33
1 //===-- Linux implementation of the mtx_destroy function ------------------===//
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 //===----------------------------------------------------------------------===//
9 #include "src/threads/mtx_destroy.h"
10 #include "src/__support/common.h"
11 #include "src/__support/threads/mutex.h"
13 #include <threads.h> // For mtx_t definition.
15 namespace LIBC_NAMESPACE {
17 LLVM_LIBC_FUNCTION(void, mtx_destroy, (mtx_t *)) {}
19 } // namespace LIBC_NAMESPACE