X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fexpr-opt.c;h=9d1537733fa0ede071e3cc2adb05f6367dd5c2b5;hb=027eba771a7ef9d25e97f0026d6469ea34c06523;hp=8724b9e017ec58482d7fba2c466e29fb5034581a;hpb=cb4033020c8a24d573814e6ac9192046bffdccac;p=pspp diff --git a/src/expr-opt.c b/src/expr-opt.c index 8724b9e017..9d1537733f 100644 --- a/src/expr-opt.c +++ b/src/expr-opt.c @@ -18,6 +18,8 @@ 02111-1307, USA. */ #include +#include "expr.h" +#include "exprP.h" #include #include #include @@ -27,8 +29,6 @@ #include "approx.h" #include "data-in.h" #include "error.h" -#include "expr.h" -#include "exprP.h" #include "julcal/julcal.h" #include "misc.h" #include "stats.h" @@ -1021,9 +1021,8 @@ dump_expression (union any_node * n, struct expression * expr) max_height = height; } - /* ANSI says we have to waste space for one `value' since pointers - are not guaranteed to be able to point to a spot *before* a - block. If only all the world were a VAX... */ + /* We waste space for one `value' since pointers are not + guaranteed to be able to point to a spot before a block. */ max_height++; e->stack = xmalloc (max_height * sizeof *e->stack);