update from libc
[gnulib.git] / lib / mathl.h
1 /* Declaration for long double functions.
2    Contributed by Paolo Bonzini
3
4    Copyright 2002, 2003 Free Software Foundation, Inc.
5
6    This file is part of gnulib.
7
8    gnulib is free software; you can redistribute it and/or modify it
9    under the terms of the GNU Lesser General Public License as published
10    by the Free Software Foundation; either version 2.1, or (at your option)
11    any later version.
12
13    gnulib is distributed in the hope that it will be useful, but WITHOUT
14    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
16    License for more details.
17
18    You should have received a copy of the GNU Lesser General Public License
19    along with gnulib; see the file COPYING.LIB.  If not, write to the Free
20    Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21    USA.
22  */
23
24 #ifndef GNULIB_MATHL_H
25 #define GNULIB_MATHL_H
26
27 extern long double acosl (long double x);
28 extern long double asinl (long double x);
29 extern long double atanl (long double x);
30 extern long double ceill (long double x);
31 extern long double cosl (long double x);
32 extern long double expl (long double x);
33 extern long double floorl (long double x);
34 extern long double frexpl (long double x, int *exp);
35 extern long double ldexpl (long double x, int exp);
36 extern long double logl (long double x);
37 extern long double sinl (long double x);
38 extern long double sqrtl (long double x);
39 extern long double tanl (long double x);
40
41 #endif