X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fpfm-read.c;h=0a13086281c757ecc4733fa764e6a679436731a7;hb=5382abe75bbd1689aca8c922fbf084af9f6bd723;hp=99a7931ae6129679aa02cd0e08ec9c3d87010d33;hpb=3a7fba81ceae5b049d0f7d671e9e3c3c43bbf703;p=pspp diff --git a/src/pfm-read.c b/src/pfm-read.c index 99a7931ae6..0a13086281 100644 --- a/src/pfm-read.c +++ b/src/pfm-read.c @@ -17,24 +17,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* AIX requires this to be the first thing in the file. */ #include -#if __GNUC__ -#define alloca __builtin_alloca -#else -#if HAVE_ALLOCA_H -#include -#else -#ifdef _AIX -#pragma alloca -#else -#ifndef alloca /* predefined by HP cc +Olibcalls */ -char *alloca (); -#endif -#endif -#endif -#endif - #include "pfm.h" #include #include @@ -636,7 +619,7 @@ convert_format (struct file_handle *h, int fmt[3], struct fmt_spec *v, { if (fmt[0] < 0 || (size_t) fmt[0] >= sizeof translate_fmt / sizeof *translate_fmt) - lose ((h, _("%s: Bad format specifier byte %d."), vv->name, fmt[0])); + lose ((h, _("%s: Bad format specifier byte (%d)."), vv->name, fmt[0])); v->type = translate_fmt[fmt[0]]; v->w = fmt[1];