blob: a92fea768bb785a370c94737b7e80b8d6eece919 [file] [edit]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Implementation of globfree.
///
//===----------------------------------------------------------------------===//
#include "src/glob/globfree.h"
#include "hdr/types/glob_t.h"
#include "src/__support/common.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(void, globfree, ([[maybe_unused]] glob_t * pglob)) {
// TODO: Implement globfree.
return;
}
} // namespace LIBC_NAMESPACE_DECL