[libc++][Android] Allow testing libc++ with clang-r536225 (#116149)
[llvm-project.git] / libc / src / stdio / baremetal / remove.cpp
blobd383d0cf788874f90e0bcb213e4a63d9635039d6
1 //===-- Linux implementation of remove ------------------------------------===//
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/stdio/remove.h"
11 #include "src/__support/common.h"
12 #include "src/__support/macros/config.h"
14 namespace LIBC_NAMESPACE_DECL {
16 // TODO: This is a temporary workaround for issue #85335.
18 LLVM_LIBC_FUNCTION(int, remove, (const char *)) { return -1; }
20 } // namespace LIBC_NAMESPACE_DECL