1 /*===-- runtime/environment-default-list.h --------------------------*- C -*-===
3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 * See https://llvm.org/LICENSE.txt for license information.
5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 * ===-----------------------------------------------------------------------===
10 #ifndef FORTRAN_RUNTIME_ENVIRONMENT_DEFAULT_LIST_H_
11 #define FORTRAN_RUNTIME_ENVIRONMENT_DEFAULT_LIST_H_
13 /* Try to maintain C compatibility to make it easier to both define environment
14 * defaults in non-Fortran main programs as well as pass through the environment
15 * default list in C code.
18 struct EnvironmentDefaultItem
{
23 /* Default values for environment variables are packaged by lowering into an
24 * instance of this struct to be read and set by the runtime.
26 struct EnvironmentDefaultList
{
28 const struct EnvironmentDefaultItem
*item
;
31 #endif /* FORTRAN_RUNTIME_ENVIRONMENT_DEFAULT_LIST_H_ */