/
GitCaptain
/
llvm-project
Обзор
Документация
Войти
/
GitCaptain
/
llvm-project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
fix-tests
libc/src/fenv/fesetenv.cpp
19 строк
622 B
Tue Ly
[libc] Remove the redundant header FPUtil/FEnvUtils.h
04 мар 2022, 22:09
04 мар 2022, 22:09
76ec69a
Код
Авторство
О чём код?
//===-- Implementation of fesetenv function -----------------------------===// // // 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 "src/fenv/fesetenv.h" #include "src/__support/FPUtil/FEnvImpl.h" #include "src/__support/common.h" namespace __llvm_libc { LLVM_LIBC_FUNCTION(int, fesetenv, (const fenv_t *envp)) { return fputil::set_env(envp); } } // namespace __llvm_libc