2025-02-16 13:25:31 +01:00
|
|
|
/*===-- cmake/config.cmake.in ---------------------------------------*- C -*-===
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*===----------------------------------------------------------------------===*/
|
|
|
|
|
|
|
|
#ifndef FORTRAN_RUNTIME_CONFIG_H
|
|
|
|
#define FORTRAN_RUNTIME_CONFIG_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `strerror_r' function. */
|
|
|
|
#cmakedefine01 HAVE_STRERROR_R
|
|
|
|
|
|
|
|
/* Define to 1 if you have the declaration of `strerror_s', and to 0 if you
|
|
|
|
don't. */
|
|
|
|
#cmakedefine01 HAVE_DECL_STRERROR_S
|
|
|
|
|
2025-02-16 15:39:52 +01:00
|
|
|
/* Define to 1 if you have the `backtrace' function. */
|
|
|
|
#cmakedefine HAVE_BACKTRACE ${HAVE_BACKTRACE}
|
|
|
|
|
|
|
|
#define BACKTRACE_HEADER <${BACKTRACE_HEADER}>
|
|
|
|
|
2025-02-16 13:25:31 +01:00
|
|
|
#endif
|