Mercurial > hg > octave-lyh
comparison src/data.cc @ 7914:e998e81224b5
Various compilation fixes for MSVC.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 10 Jul 2008 08:59:18 -0400 |
parents | a41df65f3f00 |
children | 9d080df0c843 |
comparison
equal
deleted
inserted
replaced
7913:f46e73bcb85b | 7914:e998e81224b5 |
---|---|
60 #include "parse.h" | 60 #include "parse.h" |
61 #include "pt-mat.h" | 61 #include "pt-mat.h" |
62 #include "utils.h" | 62 #include "utils.h" |
63 #include "variables.h" | 63 #include "variables.h" |
64 #include "pager.h" | 64 #include "pager.h" |
65 | |
66 #if ! defined (HAVE_HYPOTF) && defined (HAVE__HYPOTF) | |
67 #define hypotf _hypotf | |
68 #define HAVE_HYPOTF 1 | |
69 #endif | |
65 | 70 |
66 #define ANY_ALL(FCN) \ | 71 #define ANY_ALL(FCN) \ |
67 \ | 72 \ |
68 octave_value retval; \ | 73 octave_value retval; \ |
69 \ | 74 \ |