xref: /llvm-project/libc/src/stdio/remove.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
1d23d858dSSiva Chandra Reddy //===-- Implementation header of remove -------------------------*- C++ -*-===//
2d23d858dSSiva Chandra Reddy //
3d23d858dSSiva Chandra Reddy // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4d23d858dSSiva Chandra Reddy // See https://llvm.org/LICENSE.txt for license information.
5d23d858dSSiva Chandra Reddy // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6d23d858dSSiva Chandra Reddy //
7d23d858dSSiva Chandra Reddy //===----------------------------------------------------------------------===//
8d23d858dSSiva Chandra Reddy 
9d23d858dSSiva Chandra Reddy #ifndef LLVM_LIBC_SRC_STDIO_REMOVE_H
10d23d858dSSiva Chandra Reddy #define LLVM_LIBC_SRC_STDIO_REMOVE_H
11d23d858dSSiva Chandra Reddy 
125aed6d67SMichael Jones #include "hdr/types/FILE.h"
13*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
14d23d858dSSiva Chandra Reddy 
15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
16d23d858dSSiva Chandra Reddy 
17d23d858dSSiva Chandra Reddy int remove(const char *path);
18d23d858dSSiva Chandra Reddy 
19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
20d23d858dSSiva Chandra Reddy 
21d23d858dSSiva Chandra Reddy #endif // LLVM_LIBC_SRC_STDIO_REMOVE_H
22