mirror of
https://github.com/boostorg/charconv.git
synced 2026-01-19 16:12:14 +00:00
14 lines
232 B
C++
14 lines
232 B
C++
// Copyright 2023 Matt Borland
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
#include <quadmath.h>
|
|
|
|
int main()
|
|
{
|
|
__float128 f = -2.0Q;
|
|
f = fabsq(f);
|
|
|
|
return 0;
|
|
}
|