]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/w_acoshf_compat.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / math / w_acoshf_compat.c
index 6a4482e5340cc4ce7479715487552014ff31e087..594ff0d01f24f96d73625eea4d42665b228d14a7 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2011-2017 Free Software Foundation, Inc.
+/* Copyright (C) 2011-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@gmail.com>, 2011.
 
 #include <math.h>
 #include <math_private.h>
 #include <math-svid-compat.h>
+#include <libm-alias-float.h>
 
 
+#if LIBM_SVID_COMPAT
 /* wrapper acoshf */
 float
 __acoshf (float x)
@@ -31,4 +33,5 @@ __acoshf (float x)
 
   return __ieee754_acoshf (x);
 }
-weak_alias (__acoshf, acoshf)
+libm_alias_float (__acosh, acosh)
+#endif