X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Futilities%2Fecho.c;h=3d3c2c40e73ebde043d0be174f37205e41b3d5f8;hb=b7cbf7cfbfa9de06ac8017c88b602477654c79a9;hp=fe148ab8359abf9a3221299ae9733e3c46361e2b;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp-builds.git diff --git a/src/language/utilities/echo.c b/src/language/utilities/echo.c index fe148ab8..3d3c2c40 100644 --- a/src/language/utilities/echo.c +++ b/src/language/utilities/echo.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,13 +16,14 @@ #include #include -#include #include #include #include #include #include +#include "xalloc.h" + /* Echos a string to the output stream */ int cmd_echo (struct lexer *lexer, struct dataset *ds UNUSED) @@ -32,9 +33,9 @@ cmd_echo (struct lexer *lexer, struct dataset *ds UNUSED) if (lex_token (lexer) != T_STRING) return CMD_FAILURE; - tab = tab_create(1, 1, 0); + tab = tab_create(1, 1); - tab_dim (tab, tab_natural_dimensions); + tab_dim (tab, tab_natural_dimensions, NULL, NULL); tab_flags (tab, SOMF_NO_TITLE ); tab_text(tab, 0, 0, 0, ds_cstr (lex_tokstr (lexer)));