diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-26 22:49:11 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-26 22:49:11 +0000 |
commit | c8a87639c7cb7aef72630978a0e5a0d92618140c (patch) | |
tree | 862068307dff135870c4ae58be677408c4942a39 /lisp/math.c | |
parent | 0a193e032ba1ecf3f003e027e833dc9d274cb740 (diff) |
merge latest (4.3.99.16) from XFree86 (vendor) branch
Diffstat (limited to 'lisp/math.c')
-rw-r--r-- | lisp/math.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/math.c b/lisp/math.c index fcadefa..7d15e85 100644 --- a/lisp/math.c +++ b/lisp/math.c @@ -27,10 +27,14 @@ * Author: Paulo César Pereira de Andrade */ -/* $XFree86: xc/programs/xedit/lisp/math.c,v 1.22 2002/11/23 21:41:52 paulo Exp $ */ +/* $XFree86: xc/programs/xedit/lisp/math.c,v 1.24 2003/04/27 18:17:33 tsi Exp $ */ -#include "math.h" -#include "private.h" +#include "lisp/math.h" +#include "lisp/private.h" + +#ifdef __UNIXOS2__ +# define finite(x) isfinite(x) +#endif /* * Prototypes @@ -50,7 +54,7 @@ Atom_id Sdefault_float_format; /* * Implementation */ -#include "mathimp.c" +#include "lisp/mathimp.c" void LispMathInit(void) |