librcsb-core-wrapper 1.005
rcsb_math.h
Go to the documentation of this file.
1//$$FILE$$
2//$$VERSION$$
3//$$DATE$$
4//$$LICENSE$$
5
6#ifndef RCSB_MATH_H
7#define RCSB_MATH_H
8
9// IRIX does not support cmath
10#ifdef IRIX_OS
11#include <math.h>
12#else
13#include <cmath>
14#endif
15
16#endif // RCSB_MATH_H
17