blob: 1e89167a002755d637cd6444af7d68305dc9ed5b [file] [log] [blame]
//===-- Implementation of the file path generator for cmake ---------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "LibcTest.h"
#include "src/__support/CPP/string.h"
#include "src/__support/c_string.h"
namespace __llvm_libc::testing {
CString libc_make_test_file_path_func(const char *file_name) {
return cpp::string(file_name);
}
} // namespace __llvm_libc::testing