From: roland Date: Thu, 26 Jan 1995 03:36:03 +0000 (+0000) Subject: Remove obsolete __CONSTVALUE keyword. X-Git-Tag: libc_1_09~413 X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=commitdiff_plain;h=02cd920b06a65af10c5b53405dfe30d40f54a2a1 Remove obsolete __CONSTVALUE keyword. --- diff --git a/sysdeps/generic/atan.c b/sysdeps/generic/atan.c index 274bd586ad..f2cc693924 100644 --- a/sysdeps/generic/atan.c +++ b/sysdeps/generic/atan.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -20,7 +20,7 @@ Cambridge, MA 02139, USA. */ #include /* Return the inverse tangent of X. */ -__CONSTVALUE double +double DEFUN(atan, (x), register double x) { return atan2(x, 1.0);