source: trunk/src/gcc/libjava/java/lang/s_sin.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: 2.9 KB
Line 
1
2/* @(#)s_sin.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/*
15FUNCTION
16 <<sin>>, <<sinf>>, <<cos>>, <<cosf>>---sine or cosine
17INDEX
18sin
19INDEX
20sinf
21INDEX
22cos
23INDEX
24cosf
25ANSI_SYNOPSIS
26 #include <math.h>
27 double sin(double <[x]>);
28 float sinf(float <[x]>);
29 double cos(double <[x]>);
30 float cosf(float <[x]>);
31
32TRAD_SYNOPSIS