summaryrefslogtreecommitdiff
path: root/support/dktools/dk3ma.h
blob: d0c87c8816d848c8476208badd044beb75190507 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72

#ifndef DK3MA_H_INCLUDED
#define	DK3MA_H_INCLUDED 1

#include <dk3conf.h>

#include <stdio.h>
#if DK3_HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#if DK3_HAVE_STDINT
#include <stdint.h>
#endif
#if DK3_HAVE_INTTYPES_H
#include <inttypes.h>
#endif
#if DK3_HAVE_LIMITS_H
#include <limits.h>
#endif
#if DK3_HAVE_MATH_H
#include <math.h>
#endif
#if DK3_HAVE_FLOAT_H
#include <float.h>
#endif


#include <dk3types.h>
#include <dk3numco.h>
#include <dk3const.h>



#include <dk3mas.h>
#include <dk3maus.h>
#include <dk3mai.h>
#include <dk3maui.h>
#include <dk3mal.h>
#include <dk3maul.h>
#include <dk3mad.h>
#include <dk3madsc.h>
#include <dk3madic.h>
#include <dk3madlc.h>
#include <dk3maid8.h>
#include <dk3maih8.h>
#include <dk3maidd.h>
#include <dk3maihd.h>
#include <dk3maod8.h>
#include <dk3maoh8.h>
#include <dk3maodd.h>
#include <dk3maohd.h>
#include <dk3madfo.h>
#include <dk3madso.h>
#include <dk3madsi.h>



/* Yes, there are systems without M_PI or M_PI_2 in math.h */

#ifndef M_PI
/** Define pi if not already defined in math.h */
#define M_PI            (3.14159265358979323846)
#endif
#ifndef M_PI_2
/** Define 0.5 * pi if not already defined in math.h */
#define M_PI_2          (1.57079632679489661923)
#endif



#endif