]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/fegetround.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / math / fegetround.c
index 24bbd1609781601bb19fb3abe2939f0b02933e2d..e05ef26af28f06165d9bca7613084b703972a704 100644 (file)
@@ -1,5 +1,5 @@
 /* Return current rounding direction.
-   Copyright (C) 1997-2013 Free Software Foundation, Inc.
+   Copyright (C) 1997-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #include <fenv.h>
 
 int
-fegetround (void)
+__fegetround (void)
 {
 #ifdef FE_TONEAREST
   return FE_TONEAREST;
@@ -28,4 +28,7 @@ fegetround (void)
   return 0;
 #endif
 }
+libm_hidden_def (__fegetround)
+weak_alias (__fegetround, fegetround)
+libm_hidden_weak (fegetround)
 stub_warning (fegetround)