Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:32

0001 /*
0002  * Copyright (c) 2010, 2011 by
0003  * Ralf Corsepius, Ulm/Germany. All rights reserved.
0004  *
0005  * Permission to use, copy, modify, and distribute this software
0006  * is freely granted, provided that this notice is preserved.
0007  */
0008 
0009 /*
0010  * Try to compile and link against POSIX complex math routines.
0011  */
0012 
0013 #ifdef HAVE_CONFIG_H
0014 #include "config.h"
0015 #endif
0016 
0017 /* FIXME: Why is this defined? */
0018 #define NO_LONG_DOUBLE
0019 
0020 #ifdef NO_LONG_DOUBLE
0021   #define PROVIDE_EMPTY_FUNC
0022 #endif
0023 
0024 #define SUFFIX l
0025 #define FTYPE long double
0026 #define PRI "%Lf"
0027 
0028 #include "docomplex.h"