* contrib/libct/ctmath.h

* Conditional includes of math.h for DJGPP compiler
This commit is contained in:
Walter Negro
2002-07-17 15:33:53 +00:00
parent 0ac2bb4717
commit 5ffd0183a1

View File

@@ -54,7 +54,11 @@
#ifndef _CTMATH_H
#define _CTMATH_H
#ifdef __DJGPP__
#include <libm/math.h>
#else
#include <math.h>
#endif
#include <float.h>
#include <limits.h>