blob: 1c07c5f80a61f5950fcd23ea5ca5596b65b42543 [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
/// Declaration of the POSIX putenv function.
///
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_STDLIB_PUTENV_H
#define LLVM_LIBC_SRC_STDLIB_PUTENV_H
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
int putenv(char *string);
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_STDLIB_PUTENV_H