From: John E. Malmberg Date: Mon, 3 Mar 2008 11:49:54 +0000 (+0100) Subject: Add VMS support. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79edddd850ad6fa0a9ecd3611b1e26a1e62d4ceb;p=pspp Add VMS support. --- diff --git a/ChangeLog b/ChangeLog index b32827a0c2..99cb4d259b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-03-03 John E. Malmberg (tiny change) + Bruno Haible + + Add VMS support. + * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS. + 2008-03-03 John E. Malmberg (tiny change) Update VMS specifics. diff --git a/lib/alloca.in.h b/lib/alloca.in.h index af274b9e75..8be3e69f52 100644 --- a/lib/alloca.in.h +++ b/lib/alloca.in.h @@ -1,6 +1,6 @@ /* Memory allocation on the stack. - Copyright (C) 1995, 1999, 2001-2004, 2006-2007 Free Software + Copyright (C) 1995, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it @@ -44,6 +44,9 @@ # define alloca _alloca # else # include +# if defined __DECC && defined __VMS +# define alloca __ALLOCA +# endif # ifdef __cplusplus extern "C" # endif