15a75242bSPetr Hosek //===-- Linux implementation of remove ------------------------------------===// 25a75242bSPetr Hosek // 35a75242bSPetr Hosek // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 45a75242bSPetr Hosek // See https://llvm.org/LICENSE.txt for license information. 55a75242bSPetr Hosek // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 65a75242bSPetr Hosek // 75a75242bSPetr Hosek //===----------------------------------------------------------------------===// 85a75242bSPetr Hosek 95a75242bSPetr Hosek #include "src/stdio/remove.h" 105a75242bSPetr Hosek 115a75242bSPetr Hosek #include "src/__support/common.h" 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 135a75242bSPetr Hosek 14*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 155a75242bSPetr Hosek 165a75242bSPetr Hosek // TODO: This is a temporary workaround for issue #85335. 175a75242bSPetr Hosek 185a75242bSPetr Hosek LLVM_LIBC_FUNCTION(int, remove, (const char *)) { return -1; } 195a75242bSPetr Hosek 20*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 21