1// -*- C++ -*- 2//===----------------------------------------------------------------------===// 3// 4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5// See https://llvm.org/LICENSE.txt for license information. 6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7// 8//===----------------------------------------------------------------------===// 9 10module; 11#include <cfenv> 12 13export module std:cfenv; 14export namespace std { 15 // types 16 using std::fenv_t; 17 using std::fexcept_t; 18 19 // functions 20 using std::feclearexcept; 21 using std::fegetexceptflag; 22 using std::feraiseexcept; 23 using std::fesetexceptflag; 24 using std::fetestexcept; 25 26 using std::fegetround; 27 using std::fesetround; 28 29 using std::fegetenv; 30 using std::feholdexcept; 31 using std::fesetenv; 32 using std::feupdateenv; 33 34} // namespace std 35