comparison src/DLD-FUNCTIONS/cquad.cc @ 11181:a512c537b38e

cquad.cc: define copysign if needed
author John W. Eaton <jwe@octave.org>
date Wed, 03 Nov 2010 03:25:59 -0400
parents c08e9d4e54c7
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
11180:1a26199cb212 11181:a512c537b38e
28 #include "lo-math.h" 28 #include "lo-math.h"
29 #include "lo-ieee.h" 29 #include "lo-ieee.h"
30 #include "oct.h" 30 #include "oct.h"
31 #include "parse.h" 31 #include "parse.h"
32 #include "ov-fcn-handle.h" 32 #include "ov-fcn-handle.h"
33
34 #if ! defined (HAVE_COPYSIGN) && defined (HAVE__COPYSIGN)
35 #define copysign _copysign
36 #define HAVE_COPYSIGN 1
37 #endif
33 38
34 /* Define the size of the interval heap. */ 39 /* Define the size of the interval heap. */
35 #define cquad_heapsize 200 40 #define cquad_heapsize 200
36 41
37 42