source: trunk/src/gcc/libjava/java/lang/s_atan.c@ 2

Last change on this file since 2 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 4.9 KB
Line 
1
2/* @(#)s_atan.c 5.1 93/09/24 */
3/*
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 *
7 * Developed at SunPro, a Sun Microsystems, Inc. business.
8 * Permission to use, copy, modify, and distribute this
9 * software is freely granted, provided that this notice
10 * is preserved.
11 * ====================================================
12 *
13 */
14
15/*
16FUNCTION
17 <<atan>>, <<atanf>>---arc tangent
18
19INDEX
20 atan
21INDEX
22 atanf
23
24ANSI_SYNOPSIS
25 #include <math.h>
26 double atan(double <[x]>);
27 float atanf(float <[x]>);
28
29TRAD_SYNOPSIS
30 #include <math.h>
31 double atan(<[x]>);
32 double <[x]>;
33
34 float atanf(<[x]>);
35 float <[x]>;
36
37DESCRIPTION
38
39<<atan>> computes the inverse tangent (arc tangent) of the input value.