File: fp.c

package info (click to toggle)
gsl-doc 2.3-1
  • links: PTS
  • area: non-free
  • in suites: buster
  • size: 27,748 kB
  • ctags: 15,177
  • sloc: ansic: 235,014; sh: 11,585; makefile: 925
file content (50 lines) | stat: -rw-r--r-- 1,260 bytes parent folder | download | duplicates (16)
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
42
43
44
45
46
47
48
49
50
#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"
/* Try to handle universal binaries */
#elif HAVE_DARWIN_IEEE_INTERFACE
# if defined(__i386__)
#  include "fp-darwin86.c"
#else
#  include "fp-darwin.c"
# endif
#elif HAVE_DARWIN86_IEEE_INTERFACE
# if defined(__ppc__)
#  include "fp-darwin.c"
# else
#  include "fp-darwin86.c"
#endif
#elif HAVE_DECL_FEENABLEEXCEPT || HAVE_DECL_FESETTRAPENABLE
#include "fp-gnuc99.c"
#else
#include "fp-unknown.c" 
#endif