summaryrefslogtreecommitdiff
path: root/gsl-1.9/ieee-utils/fp.c
blob: 5c282f38fb206be89573fa9771493da7ff3b59e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <config.h>

#if HAVE_GNUSPARC_IEEE_INTERFACE
#include "fp-gnusparc.c"
#elif HAVE_GNUM68K_IEEE_INTERFACE
#include "fp-gnum68k.c"
#elif HAVE_GNUPPC_IEEE_INTERFACE
#include "fp-gnuppc.c"
#elif HAVE_GNUX86_IEEE_INTERFACE
#include "fp-gnux86.c"
#elif HAVE_HPUX11_IEEE_INTERFACE
#include "fp-hpux11.c"
#elif HAVE_HPUX_IEEE_INTERFACE
#include "fp-hpux.c"
#elif HAVE_SUNOS4_IEEE_INTERFACE
#include "fp-sunos4.c"
#elif HAVE_SOLARIS_IEEE_INTERFACE
#include "fp-solaris.c"
#elif HAVE_IRIX_IEEE_INTERFACE
#include "fp-irix.c"
#elif HAVE_AIX_IEEE_INTERFACE
#include "fp-aix.c"
#elif HAVE_TRU64_IEEE_INTERFACE
#include "fp-tru64.c"
#elif HAVE_FREEBSD_IEEE_INTERFACE
#include "fp-freebsd.c"
#elif HAVE_OS2EMX_IEEE_INTERFACE
#include "fp-os2emx.c"
#elif HAVE_NETBSD_IEEE_INTERFACE
#include "fp-netbsd.c"
#elif HAVE_OPENBSD_IEEE_INTERFACE
#include "fp-openbsd.c"
#elif HAVE_DARWIN_IEEE_INTERFACE
#include "fp-darwin.c"
#elif HAVE_DARWIN86_IEEE_INTERFACE
#include "fp-darwin86.c"
#elif HAVE_DECL_FEENABLEEXCEPT || HAVE_DECL_FESETTRAPENABLE
#include "fp-gnuc99.c"
#else
#include "fp-unknown.c" 
#endif